|
Re: A few questions on programming the Control System
You can still sort of use bools.
typedef bool unsigned char;
or
typedef unsigned char bool;
I can never remember which (more of a C++ guy myself too). I think it's the top one though.
Also:
#define TRUE 1
#define FALSE 0
|