Arduino_TensorFlowLite_ESP32 icon indicating copy to clipboard operation
Arduino_TensorFlowLite_ESP32 copied to clipboard

TensorFlowLite_ESP32\src\bus\i2s_lcd_esp32_driver.c:29:25: fatal error: hal/gpio_ll.h: No such file or directory

Open phuzybuny opened this issue 3 years ago • 6 comments

Was initially encountering the error TensorFlowLite_ESP32\src\bus\i2s_lcd_esp32_driver.c:24:30: fatal error: esp32/rom/lldesc.h: No such file or directory. But changing the #include "esp32/rom/lldesc.h" to #include "rom/lldesc.h" worked on my Windows machine with the Espressif ESP32 boards definition version 1.0.6.

However, I could not locate the equivalent for hal/gpio_ll.h.

phuzybuny avatar Aug 30 '22 04:08 phuzybuny

Run into the same thing today. TFLite_ESP32 V1.0.0 seems to need ESP32 platform V2.0.0 or above to function properly. I wonder if it is possible to make this as a requirement, so it wont even try to compile without the proper platform version.

theloukou avatar Nov 11 '22 16:11 theloukou

Started compiling on arduino ran into this problem, but did not run into this problem on vscode.

xiaoyinliuyun avatar Apr 21 '23 23:04 xiaoyinliuyun

开始在arduino上编译遇到这个问题,但是在vscode上没有遇到这个问题。

xiaoyinliuyun avatar Apr 21 '23 23:04 xiaoyinliuyun

I ended up using raw TFlite. A bit more involved, but made my own wrappers to speed things up. I consider this project dead after all this inactivity tbh.

theloukou avatar Apr 22 '23 16:04 theloukou

我最终使用了原始TFlite。稍微复杂一点,但制作了我自己的包装器来加快速度。我认为这个项目在所有这些不活动之后已经死了 tbh。

The original TFlite refers to version 0.9.0

geek394 avatar Jul 15 '23 07:07 geek394

I used platformio to fix this.

KyleQ1 avatar Jul 15 '24 03:07 KyleQ1