Search found 9 matches
- Mon May 13, 2024 10:43 am
- Forum: General Discussion
- Topic: Asking for help for OTA ESP32 with a Cellular Modem and AWS
- Replies: 3
- Views: 1102
Re: Asking for help for OTA ESP32 with a Cellular Modem and AWS
Hi @InterBilly, Thank you for your comment. I agree with you about ESP OTA is fairy easy, however, customizing the software to integrate with ESP AWS Iot and cellular have been the issue to me. I'm looking for a solution/ example handle the AWS connection with my cellular modem. If you have any info...
- Mon May 06, 2024 8:53 am
- Forum: General Discussion
- Topic: Asking for help for OTA ESP32 with a Cellular Modem and AWS
- Replies: 3
- Views: 1102
Re: Asking for help for OTA ESP32 with a Cellular Modem and AWS
Please help!!!
Do you guys have any clue or contact where I can ask about this?
Do you guys have any clue or contact where I can ask about this?
- Tue Apr 30, 2024 5:47 am
- Forum: General Discussion
- Topic: Asking for help for OTA ESP32 with a Cellular Modem and AWS
- Replies: 3
- Views: 1102
Asking for help for OTA ESP32 with a Cellular Modem and AWS
Hi, Recently, I've been trying to test out the OTA of ESP32 with AWS, I've used the esp-aws-iot library to test out the examples for both MQTT and HTTP OTA. So far, I've been able to connect to AWS and done Jobs (OTA) by using these examples, however, the challenge is about doing OTA via Serial Line...
- Wed Jun 29, 2022 1:26 pm
- Forum: ESP-IDF
- Topic: ESP_OTA: OTA image has invalid magic byte
- Replies: 6
- Views: 17088
Re: ESP_OTA: OTA image has invalid magic byte
Hello tharunjoy, I have the same problem, can you please give me more detail about what did you do? I found the reason for this issue. Just like you guys told ESP is not able to automatically redirect the URL like a web browser. I just found the redirected URL and used that in the program, to succes...
- Wed Oct 14, 2020 8:09 am
- Forum: ESP-IDF
- Topic: Need help for component-requirements with release/v3.3 esp-idf
- Replies: 3
- Views: 3798
Re: Need help for component-requirements with release/v3.3 esp-idf
Hi guys, I think I solved the problem. So the problem could be because I use both component.mk (not empty) and CMakeList.txt files. What I have changed? So I removed everything in all component.mk files but still keep component.mk files in each component folder along with CMakeList.txt file. And in ...
- Mon Oct 12, 2020 8:24 am
- Forum: ESP-IDF
- Topic: Need help for component-requirements with release/v3.3 esp-idf
- Replies: 3
- Views: 3798
Re: Need help for component-requirements with release/v3.3 esp-idf
Hi ESP_Angus, Thanks for your support. I've tried your first suggestion: removing (moving include folders of those components to be in the same include folder in components/include, removing the CMakeLists.txt in each components and removing the component.mk files in the top-level folder of my proje...
- Sun Oct 11, 2020 6:46 pm
- Forum: ESP-IDF
- Topic: Need help for component-requirements with release/v3.3 esp-idf
- Replies: 3
- Views: 3798
Need help for component-requirements with release/v3.3 esp-idf
Hi everyone, I have problem with component requirements. Because I'm using release/v3.3 esp-idf version, so I cannot find document about component-requirements which shows how to link/include between two (2) components in project. So my project tree is like this: ├───components │ ├───cloud │ │ └───i...
- Fri May 15, 2020 7:30 am
- Forum: ESP-IDF
- Topic: Need help for building code with ESP-IDF & CMake & Eclipse
- Replies: 1
- Views: 2100
Re: Need help for building code with ESP-IDF & CMake & Eclipse
I got it work...
I defined the struct in [sensor.h] and initialize the struct array in [main.c].
Besides that I change the way defined struct from
typedef struct ax{
...
};
to be
typedef struct{
...
}ax;
I defined the struct in [sensor.h] and initialize the struct array in [main.c].
Besides that I change the way defined struct from
typedef struct ax{
...
};
to be
typedef struct{
...
}ax;
- Thu May 14, 2020 2:51 pm
- Forum: ESP-IDF
- Topic: Need help for building code with ESP-IDF & CMake & Eclipse
- Replies: 1
- Views: 2100
Need help for building code with ESP-IDF & CMake & Eclipse
Hi everyone, I'm new here - not totally new, I've done project with ESP32 on Arduino IDE but now I'm trying to re-factor everything with ESP-IDF and it requires knowledge in different fields I didn't know (e.g CMake). Now I have a issue with struct in C. I cannot pass the struct which I have defined...