2010-09-20 01:07 AM
GPIO configuration change takes 25 microsecond
#raisonance2011-05-17 05:07 AM
unsigned int is 32 bits on every compiler for ARM I have ever used. I'd be very surprised if it were not as it is a 32 bit core.
2011-05-17 05:07 AM
where can I learn the size of datatypes in RIDE7 ?
which doc ?2011-05-17 05:07 AM
Don't know anything about Ride but you can use this in your code to find out:
printf( ''sizeof(int) = %u\r\n'', sizeof(int) ); printf( ''sizeof(char) = %u\r\n'', sizeof(char) ); printf( ''sizeof(long) = %u\r\n'', sizeof(long) ); etc. At a guess int will be 32 bits, long will be 32 bits, long long will be 64 bits, char will 8 bits, short will be 16 bits.