Question
how to declare byte in STM32
I am using in adruino declaration
uint16_t x;
.
.
.
byte lowerByte = lowByte(x);
byte upperByte = highByte(x);
Wire.beginTransmission(0x23); //Slave Address
Wire.write(lowerByte);
Wire.write(upperByte);
Wire.endTransmission();
to send bigger numbers over I2C and it works fine
when I use byte to declare number in Keil it does not recognize it .
is there anyway to make the same in Keil ?
