Forcing a software reset on the BCM20736S

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Is there a way to force a software reset on the BCM20736S? I would like to call a function from code that is as close to an external reset as possible.

Thanks,

     Aaron

0 Likes
1 Solution
Anonymous
Not applicable

Thanks!

So for those who are interested, here's what I used to force a reset:

     wdog_configure(TRUE);

     bleappfwu_watchdogExpired();

     while (1) {} // Hang

View solution in original post

2 Replies
BoonT_56
Employee
Employee
500 likes received 250 likes received 100 likes received

The below could be a useful thread.

Can I use the API to perform a soft reset?

0 Likes
Anonymous
Not applicable

Thanks!

So for those who are interested, here's what I used to force a reset:

     wdog_configure(TRUE);

     bleappfwu_watchdogExpired();

     while (1) {} // Hang