István Z. Kovács
István Z. Kovács
Hi @hasaranga. I had similar problem but for a different screen (https://learn.sparkfun.com/tutorials/sparkfun-micromod-input-and-display-carrier-board-hookup-guide). My problem was that the SPI settings were incorrect for these pins ``` #define TFT_MISO xx #define TFT_MOSI...
I get the same error when using `micro_log` (MicroPrintf) instead of `micro_error_reporter` (MicroErrorReporter), with TensorFlow 2.15: ``` tensorflow/lite/micro/micro_log.cpp:31: undefined reference to `DebugLog' ```
The problem comes from the `Arduino_TensorFlowLite` library which is quite outdated compared to the newest TFLM features. The `DeBugLog` is defined in `tensorflow/lite/micro/system_setup.cpp` as: ``` extern "C" void DebugLog(const char*...
I found a solution, although not fully tested yet, my version of `micro_speech.ino` compiles now without errors, just with many warnings. I hope this will help others trying to solve...