Great. I'm very happy to use uint8_t/etc types. In Espruino it's generally assumed that int is 32 bits, long is 64 and char is 8, but where I feel it really matters I do tend to use int32_t/etc - but being more explicit going forward can't really hurt
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Great. I'm very happy to use uint8_t/etc types. In Espruino it's generally assumed that
int
is 32 bits,long
is 64 andchar
is 8, but where I feel it really matters I do tend to useint32_t
/etc - but being more explicit going forward can't really hurt