cancel
Showing results for 
Search instead for 
Did you mean: 

iar embedded workbench help me

bicmosit
Associate
Posted on October 18, 2010 at 20:22

iar embedded workbench help me

1 REPLY 1
Posted on May 17, 2011 at 14:11

Hy all,I am new user of iar,

do you recommend a good manual that explains well the c, for example the types uint8_t??

thanks

Doesn't IAR ship it with a manual, or two? Try enquiring with the local IAR sales office.

uint8_t is a typedef that explicitly defines a ''8-bit unsigned integer'', because 'C' doesn't intrinsically have size guarantees for char, int, long, etc. People often use ''unsigned char'', but a byte isn't always 8-bit, although it's fairly safe these days. As for books, K&R was always the classic reference.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..