Hello,
just a quick question regarding initializing a (rather big) byte array:
I'm aware that bytes are actually signed (not the problem) but how do i initialize a byte array without using file functions?
in c that would look like
unsigned char myData[] = { 0xFF, 0xEA, 0x00, 0x90, 0xFF, 0xAA };
(the data inside is much more; just as example)
Any suggestions?
just a quick question regarding initializing a (rather big) byte array:
I'm aware that bytes are actually signed (not the problem) but how do i initialize a byte array without using file functions?
in c that would look like
unsigned char myData[] = { 0xFF, 0xEA, 0x00, 0x90, 0xFF, 0xAA };
(the data inside is much more; just as example)
Any suggestions?