Search found 5 matches
- Wed Nov 06, 2024 11:39 pm
- Forum: ESP8266
- Topic: Main file cannot view includes in another file
- Replies: 4
- Views: 940
Re: Main file cannot view includes in another file
I tried adding it inside a components folder and putting any .c inside the app folder. But I still get the same error. I watched the video sent, tested what was informed but was also unsuccessful. Could I be missing something? This is my repository: https://github.com/yanmartins/univali-iot-node-sen...
- Tue Nov 05, 2024 9:27 am
- Forum: ESP8266
- Topic: Main file cannot view includes in another file
- Replies: 4
- Views: 940
Re: Main file cannot view includes in another file
Hello,
I included the app_default file inside my main.c. Why wouldn't this work?
The main.c file contains code. If I make the glasses like: #include "../app/inc/app_default.h" it works.
But I want to add the file to cmakelist to make the include cleaner.
I included the app_default file inside my main.c. Why wouldn't this work?
The main.c file contains code. If I make the glasses like: #include "../app/inc/app_default.h" it works.
But I want to add the file to cmakelist to make the include cleaner.
- Mon Nov 04, 2024 11:20 pm
- Forum: ESP8266
- Topic: Main file cannot view includes in another file
- Replies: 4
- Views: 940
Main file cannot view includes in another file
Hello, I have a project with the following organization: . ├── CMakeLists.txt ├── app │ ├── inc │ │ └── app_default.h │ ├── src │ │ └── dummy.c │ └── CMakeLists.txt ├── main │ ├── CMakeLists.txt │ └── main.c └── srv ├── inc └── src Root CMakelists.xtx: # The following lines of boilerplate have to be...
- Fri Oct 06, 2023 3:53 pm
- Forum: ESP-IDF
- Topic: EXAMPLE: A Wi-Fi Mesh network where each node can access the network via the IP layer.
- Replies: 0
- Views: 949
EXAMPLE: A Wi-Fi Mesh network where each node can access the network via the IP layer.
Hi at all, I based myself on these three examples: https://github.com/espressif/esp-idf/tree/master/examples/mesh But I can't adapt it so that every node can send data to the network. On the nodes, I noticed that they were unable to resolve the DNS. Only ROOT did it. In my scenario, each node must s...
- Tue Mar 14, 2023 4:24 pm
- Forum: General Discussion
- Topic: I can't send messages over the mobile network with a baud rate other than the default
- Replies: 0
- Views: 686
I can't send messages over the mobile network with a baud rate other than the default
Hello, I'm working in a project using ESP32-S3 and Telit module for use mobile data. I can make the mobile module send data over the network with the default baud rate (115200). But when I change the baudrate to any other value, I can't communicate over the network. This is the code snippet where I ...