-
Notifications
You must be signed in to change notification settings - Fork 231
Closed
Description
When compiling on Linux I've got the following error:
In file included from /home/LoBo2_Razno/ESP32/Lua-RTOS-ESP32/components/lua_rtos/Lua/modules/adc.c:39:0:
/home/LoBo2_Razno/ESP32/Lua-RTOS-ESP32/components/lua_rtos/Lua/modules/adc.h:34:25: fatal error: drivers/CPU.h: No such file or directory
#include "drivers/CPU.h"
^
compilation terminated.
/home/LoBo2_Razno/ESP32/esp-idf/make/component_wrapper.mk:176: recipe for target 'Lua/modules/adc.o' failed
After changing (in components/lua_rtos/Lua/modules/adc.h/adc.h)
#include "drivers/adc.h"
#include "drivers/CPU.h"
to
#include <drivers/adc.h>
#include <drivers/cpu.h>
it builds without errors.
By the way, great work, I'm testing the wifi branch, for now everything works...
Metadata
Metadata
Assignees
Labels
No labels