I want to convert a array of uchar to uint8 pointer. As both are of 8 bits and value ranges from 0 to 255 so I do not think it should cause and issue.
uchar list[100];
I have to pass above list to a function which accepts pointer to uint8t. Can i pass it like this :
(uint8t *)list
such that it will not affect the value when i read it as uint8.