Question
trying to split 16bit number into two 8 bit number uint8_t bytes[2]; uint16_t value = 1234; bytes[0]= value >> 8; bytes[1]= value & 0xFF; what is the wrong in this code . cube ide keep giving compile error .
..
..
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.