Search found 6 matches
- Thu Apr 17, 2025 3:45 pm
- Forum: ESP-AT
- Topic: Modified AT commands
- Replies: 6
- Views: 3357
Re: Modified AT commands
you can see this example:
https://github.com/espressif/esp-at/blob/release/v3.3.0.0/examples/at_custom_cmd/custom/at_custom_cmd.c
Just instead `+TEST` with `+RESTORE`, then AT will execute your AT+RESTORE command.
btw, if you don't restart the module, some configurations will not effect.
About ...
- Mon Apr 14, 2025 9:24 pm
- Forum: ESP-AT
- Topic: Modified AT commands
- Replies: 6
- Views: 3357
Re: Modified AT commands
The AT command override feature was added after 2024.3, and you will need to use version 3.3.0.0 or later.
I'm having trouble find any mention of command overrides in versions >= 3.3.0.0. I can see an example of module overrides: https://github.com/espressif/esp-at/tree ...
- Mon Apr 14, 2025 3:42 am
- Forum: ESP-AT
- Topic: Modified AT commands
- Replies: 6
- Views: 3357
Re: Modified AT commands
The AT command override feature was added after 2024.3, and you will need to use version 3.3.0.0 or later.
Hi, is there a specific example you can share of how that's done/works, if you don't mind.
Also, this is for ESP32 specifically.
Just to give an example, would it be possible to modify ...
- Sun Apr 13, 2025 1:03 am
- Forum: ESP-AT
- Topic: Modified AT commands
- Replies: 6
- Views: 3357
Modified AT commands
Hello,
I'm using version 3.2.1.0 of ESP-AT: https://github.com/espressif/esp-at/tree/v3.2.1.0.
I see that the lib32_at_core is provided as a library, so I can't modify anything in there. Is there any way to modify the functionality of an existing AT command? Or override an existing command to ...
I'm using version 3.2.1.0 of ESP-AT: https://github.com/espressif/esp-at/tree/v3.2.1.0.
I see that the lib32_at_core is provided as a library, so I can't modify anything in there. Is there any way to modify the functionality of an existing AT command? Or override an existing command to ...
- Wed Nov 06, 2024 4:19 pm
- Forum: ESP-IDF
- Topic: Linux Host Unit test Coverage - ESP-IDF
- Replies: 3
- Views: 1540
- Sun Jun 09, 2024 11:36 pm
- Forum: ESP-IDF
- Topic: Linux Host Unit test Coverage - ESP-IDF
- Replies: 3
- Views: 1540
Linux Host Unit test Coverage - ESP-IDF
Hello,
I'm having trouble setting code coverage generation for my unit testing. I'm able to run my tests perfectly fine and I'm able to generate .gcno files by adding --coverage to the build process for both the test source file and the sources for the custom component I'm testing. The problem is ...
I'm having trouble setting code coverage generation for my unit testing. I'm able to run my tests perfectly fine and I'm able to generate .gcno files by adding --coverage to the build process for both the test source file and the sources for the custom component I'm testing. The problem is ...