Did you solve it?
I'm trying to create a proper ppp connection but I'm lost right now. Where did you find anything useful about it? Can you share it with us even if they are just documents?
I checked esp-modem component's way but I really didn't understand how they started PPP communication, I know ...
Search found 4 matches
- Thu Feb 27, 2025 12:50 pm
- Forum: General Discussion
- Topic: Proper netif/ppp disconnect/close? TCP timeout retry is crashing my app
- Replies: 3
- Views: 2510
- Sun Dec 15, 2024 10:58 pm
- Forum: ESP-IDF
- Topic: How to bypass Enumeration step of build process?
- Replies: 1
- Views: 1402
Re: How to bypass Enumeration step of build process?
I learned how to do it. There is some ways, first
You can add command to bypass it, "CMAKE_BUILD_EARLY_EXPANSION" is only set enumeration step. So we can bypass it. Or we can still use "idf_component_register".
You can add
Code: Select all
if(NOT CMAKE_BUILD_EARLY_EXPANSION)- Sun Dec 15, 2024 10:48 pm
- Forum: General Discussion
- Topic: multiple App binaries
- Replies: 3
- Views: 4683
Re: multiple App binaries
As far as I know and tested you can use whatever you want but you HAVE to port it for it. Create a bootloader components and send these inside of it. I suggest you can write basic functionalities of these you mention it but use bare functions you should not keep it long or try to use unloaded parts ...
- Thu Dec 12, 2024 2:04 pm
- Forum: ESP-IDF
- Topic: How to bypass Enumeration step of build process?
- Replies: 1
- Views: 1402
How to bypass Enumeration step of build process?
I have a project with a lot of CMake logic integrated to it. I want to bypass enumeration step of build process so I no longer see "command is not scriptable" error when building. How can I do that? I can not use idf_component_register before this logic because this CMake has not a component but two ...