Also, implement a software watchdog to make sure that the main real-time modules are actually being run. Provide a panic facility, also giving blink codes to indicate the panic reason.
4 lines
54 B
C
4 lines
54 B
C
/* abs.h */
|
|
|
|
#define abs(x) (((x) < 0)? (-(x)) : (x))
|