2015-09-07 03:00 AM
how to use 64 bit data type in stm8s003f3? if i use unsigned long long its not takeing and giving error.
#st2015-09-07 03:22 AM
2015-09-09 10:03 AM
64-bit integers were introduced in the ISO C99 standard, which, as far as I know, is supported by SDCC and IAR C, but not the other compilers.
In C99 on STM8 you can use long long, unsigned long long, uint16_t int64_t, uint_fast64_t, uint_least64_t, int_fast64_t, int_least64_t. Philipp