I have an array of char* defined as char *data_ptr = "ABCDEFGHIJKLMNOPQRSTUVWX"
. Also, I have a write buffer declared as static uint32_t wr_buff[32]
.
I iteratively extract 4 bytes from the array and put them in a substring of char defined as char substr[4]
.
What I want to do is put those 4 bytes into the write buffer without changing their value but I firstly need to cast each element of the substring to uint32_t.
I tried the following line but it didn't work:
wr_buffer = (uint32_t)substr[0] << 24 | (uint32_t)substr[1] << 16 | (uint32_t)substr[2] << 8 | (uint32_t)substr[3];
how can I save those 4 bytes to the uint32_t buffer?
You over complicated things :
Note (thanks to @ user16217248 for pointing out few errors) :