2010-08-13 07:28 AM
uint8_t definition
2011-05-17 05:02 AM
2011-05-17 05:02 AM
but this line from the stdint.h
typedef __UINT8_T_TYPE__ uint8_t;
does not make sense to me
2011-05-17 05:02 AM
Ah yes, I remember that obscure definition. I'll go back and take a look again.
2011-05-17 05:02 AM
Sorry I cannot find a reference to typedef __UINT8_T_TYPE__ uint8_t; any more.
It was a few weeks ago. I vaguely remember that we could not find a definition of __UINT8_T_TYPE__ but I'm not sure. I think __UINT8_T_TYPE__ might be compiler specific.2011-05-17 05:02 AM
2011-05-17 05:02 AM
These are things that are specific to a particular compiler implementation.
So the documentation for your compiler is the main place that you should find them.2011-05-17 05:02 AM
2011-05-17 05:02 AM
Depends on your libc.
In codesourcery (newlib) there's: typedef unsigned char uint8_t ; In others you should be able to track it down and eventually come to unsigned char.2011-05-17 05:02 AM