CMake Error Setting Up Zephyr Environment for MicroPython on ESP32
Hello guys am working on a simple temperature monitoring system using
MicroPython
on a Zephyr
RTOS
-supported microcontroller, such as the ESP32
, and transmit the data over Bluetooth
Low Energy (BLE) to a mobile app? Am currently trying to setup a Zephyr
environment for MicroPython
I tried
Along with my MicroPython Script (main.py)
But during the build process, an error occurs indicating that the MicroPython module is not found.
Do any one have any suggestions as to how I can resolve this??1 Reply
Hey @Enthernet Code , Set the
ZEPHYR_BASE
environment variable to your Zephyr directory:
Then, source the environment script:
This should help CMake find the FindZephyr.cmake file during the build process.
Try this out...