Tool/software: TI C/C++ Compiler
We are trying to interface DSP and ESP32 via serial communication. The problem is DSP sending 16-bit data. ESP32 has a maximum width of 8-bit for serial communication. So, we are facing trouble to port ESP32 code to DSP.
Currently we are treating uint16_t as uint8_t data. Is there any better way to do it?