lcd_com_reverse_buffer_bytes() function
Reverse the bytes in the buffer
Syntax
static inline void lcd_com_reverse_buffer_bytes(uint8_t *buf,
int start,
int end);
Arguments
start
start index of the buffer
end
end index of the buffer
Notes
LCD is big-endian, e.g. to send command 0x1234, byte 0x12 should appear on the bus first However, the low level peripheral (like i80, i2s) will send 0x34 first. This helper function is used to reverse the bytes order