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.
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.
Never mind that. The problem is in fsm.h where FSM_DEBUG is defined. It should not be defined there and be removed or put in one the those thousands of config.h defines.
Please stop adding that kind of useless conditional compilation we will soon end up with 10000 defines to get things to compile. This is rediculous
Hi,
Thank you for your valuable feedback. We will take your suggestions into consideration for the further development of our nRF5 SDK for Mesh.
Regards,
Terje
Hi,
Thank you for your valuable feedback. We will take your suggestions into consideration for the further development of our nRF5 SDK for Mesh.
Regards,
Terje