is there a correct way to increment a uint8 string in big endian format? For example i have:
uint8 test[] = {0,0,0,1};
test[3]++; //works
but is also somehow an increment with an typecast in this way possible?
*test = (uint32) *test+1; //doesnt work... Only the first test[0] will be incremented...
Thank you.