tanakamasayuki / Arduino_TensorFlowLite_ESP32

Allows you to run machine learning models locally on your ESP32 device.
Apache License 2.0
235 stars 49 forks source link

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

Open phuzybuny opened 2 years ago

phuzybuny commented 2 years ago

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.

theloukou commented 2 years ago

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.

xiaoyinliuyun commented 1 year ago

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

xiaoyinliuyun commented 1 year ago

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

theloukou commented 1 year ago

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.

geek394 commented 1 year ago

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

The original TFlite refers to version 0.9.0

KyleQ1 commented 4 months ago

I used platformio to fix this.