adafruit / adafruit/Adafruit_WICED_Arduino
Reconnecting Feather WICED to Wifi
- Dominant language
- C
- Stars
- 26
- Forks
- 19
- PR merge metrics
- No merged PRs in 30d
Description
This is just a tracking issue to follow along for https://forums.adafruit.com/viewtopic.php?f=57&t=114903. As best as I could tell it still hasn't been resolved, although there is a workaround provided of using a watchdog timer to reset the board if it hangs. More info on watchdog timers at http://librambutan.readthedocs.io/en/latest/libmaple/api/iwdg.html.
```
#include
// ...
// turn on to recover after hang
boolean useWDT = true;
void setup()
{
//...
if( useWDT )
{
iwdg_init(IWDG_PRE_128, 11500000);
}
}
void loop()
{
// ...
# Call this to reset the watchdog timer.
# If it isn't called then the board will reset.
iwdg_feed();
}
```
Contributor guide
No contributing guide indexed for this repository
Research direction
No repository file or test is named. Start by reading the linked forum thread and the watchdog documentation, then reproduce the Wi-Fi hang; done would require a confirmed, tested resolution or a documented resolution beyond the existing watchdog workaround.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- c
- Domain
- embedded-iot, networking
- Issue type
- Bug
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 20/100