Search found 4 matches
- Fri Dec 05, 2025 4:38 pm
- Forum: ESP-IDF
- Topic: Achieve live variable monitoring with ESP32-DevKitC-32UE
- Replies: 2
- Views: 1817
Achieve live variable monitoring with ESP32-DevKitC-32UE
I have a ESP32-DevKitC-32UE and would like to achieve some sort of live variable monitor while testing. I have a ESP-PROG debugger and was hoping to use this as a way to view variables while running my project (consists of ADC, SPI, CAN, and WIFI ethernet respectively) without pausing. I see there ...
- Tue Aug 26, 2025 3:20 pm
- Forum: ESP-IDF
- Topic: Directory Restructure - ESPNOW-example
- Replies: 5
- Views: 146
Re: Directory Restructure - ESPNOW-example
Hi
Actually this line:
set(EXTRA_COMPONENT_DIRS "${CMAKE_CURRENT_LIST_DIR}/target")
worked for me. As in I was able to build it without seeing any issues.
For context my directory structure did change a bit
target
|
||---esp32
|||---Include
|||---Source
Thank you.
Actually this line:
set(EXTRA_COMPONENT_DIRS "${CMAKE_CURRENT_LIST_DIR}/target")
worked for me. As in I was able to build it without seeing any issues.
For context my directory structure did change a bit
target
|
||---esp32
|||---Include
|||---Source
Thank you.
- Mon Aug 25, 2025 2:34 pm
- Forum: ESP-IDF
- Topic: Directory Restructure - ESPNOW-example
- Replies: 5
- Views: 146
Re: Directory Restructure - ESPNOW-example
Oh sorry attached root and components CMAKElists
- Fri Aug 22, 2025 6:54 pm
- Forum: ESP-IDF
- Topic: Directory Restructure - ESPNOW-example
- Replies: 5
- Views: 146
Directory Restructure - ESPNOW-example
I am looking to restructure the project to an AUTOSAR formatted version as shown below:
GA_Restructure/
├─ target/ <-- main component
│ ├─ source/
│ │ ├─ GA_main.c <-- contains app_main()
│ │ └─ wifi.c
│ ├─ include/
│ │ └─ wifi.h
│ └─ CMakeLists.txt <-- component CMakeLists
├─ CMakeLists.txt ...
GA_Restructure/
├─ target/ <-- main component
│ ├─ source/
│ │ ├─ GA_main.c <-- contains app_main()
│ │ └─ wifi.c
│ ├─ include/
│ │ └─ wifi.h
│ └─ CMakeLists.txt <-- component CMakeLists
├─ CMakeLists.txt ...