We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
In the uVision enviroment i have a warning which according to the help files i do not believe i should get.
It complains about the typedef enum { DATAACCESS_Config = (u32)0x00000000, DATAACCESS_Status = (u32)0x40000000, DATAACCESS_Control = (u32)0x80000000, DATAACCESS_NotImplemnted = (u32)0xC0000000 } DATAACCESS_Type;
but on the help files it states that values are treated the same as in C++ as unsigned ints.
so will this values be used correctly and therefore the warning needs to be removed, if so how do i do this??
I quickly checked here:
infocenter.arm.com/.../index.jsp
It seems that despite the warning, the values have been promoted to an unsigned.