I want to use a variable of type uint40_t in my program.
What do I need to do to make this work?
currently, i have the following code fragments..
uint40_t testLongNumber;
void setup()
{
testLongNumber=9876543210;
}
The compiler returns the error
error: 'uint40_t' does not name a type In function 'void setup()':I think i need to #define what a uint40_t is, but not sure how I do it. Anyone know how?
Thanks