This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Mesh SDK 2.2 bad conditional compilation declaration in fsm.c

There are many places in the file fsm.c that have this compile condition check

#if defined FSM_DEBUG

blabla

#endif

that is wrong. The compiler will ignore it.  There 2 way to do that

1 - #ifdef FSM_DEBUG

or

2 - #if defined(FSM_DEBUG)

Please fix it.

Parents Reply Children
Related