Closed SeppoTakalo closed 6 years ago
In SPWFSA.h line 88-90
void reset(void) { bzero(this, sizeof(*this)); }
Function bzero() does not seem to exists in ARM or IAR compiler. Replace with memset()
bzero()
memset()
Should be fixed with this commit. Pls. let me know if we can close the issue.
Test build is fixed now.
In SPWFSA.h line 88-90
Function
bzero()
does not seem to exists in ARM or IAR compiler. Replace withmemset()