I need convert unsigned char array into unit8_t array maybe someone has an idea how to do it?
I tried to look for information on the Internet, but unfortunately I did not succeed.
:)
So, have you tried uint8_t* myuint8array = (uint8_t*)myuchararray;
?
You have
unsigned char arr[size];
and you want
uint8_t arr[size];
uint8_t is simply defined as
typedef unsigned char uint8_t;
:-)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With