index

means: active

Code under current development.

flip the switch


If the interface is small work behind an #if:
#if 1  // DEVEL 
void cb(Context*C) { /*new code*/ } 
#else 
void cb(Context*C) { /*old code*/ } 
#endif // DEVEL

tests

Save yourself time and trouble by checking for off-by-one's and similar small errors with launch init tests.

nedwaves.com 2017 [171108]