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.
:)
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.
:)
You have
unsigned char arr[size];
and you want
uint8_t arr[size];
uint8_t is simply defined as
typedef unsigned char uint8_t;
:-)