Search found 16 matches
- Thu Jul 18, 2024 8:46 pm
- Forum: General Discussion
- Topic: Finding the default sketches
- Replies: 5
- Views: 1312
Re: Finding the default sketches
You can extract original fw via esptool read_flash. For devices like Sonoff POW it may be useful to be able to revert to original FW before flashing Tasmota or esphome.
- Thu Jul 11, 2024 8:41 pm
- Forum: General Discussion
- Topic: what is the difference (esp8266 nodemcu v3 vs esp8266 wemos d1mini )?
- Replies: 6
- Views: 2941
Re: what is the difference (esp8266 nodemcu v3 vs esp8266 wemos d1mini )?
Out of curiosity, I've looked up the project the OP is trying to make work - https://github.com/projectswithalex/Reaction-Lights-Training-Module/. It consists of 4 devices, which are communicating with each other via ESPNOW. I guess the best way to find out what's causing the issue is download ardui...
- Thu Jul 11, 2024 7:28 am
- Forum: General Discussion
- Topic: How to re-initial USB driver
- Replies: 1
- Views: 839
- Thu Jul 11, 2024 6:50 am
- Forum: General Discussion
- Topic: what is the difference (esp8266 nodemcu v3 vs esp8266 wemos d1mini )?
- Replies: 6
- Views: 2941
Re: what is the difference (esp8266 nodemcu v3 vs esp8266 wemos d1mini )?
Again, please be more specific. I'm not familiar with this project, therefore it's a bit hard to understand what do you mean by "connecting". Do you use USB driver, serial console or WIFI or some other means of connection? In general, you should be able to connect to MCU regardless of any connected ...
- Wed Jul 10, 2024 12:40 pm
- Forum: General Discussion
- Topic: what is the difference (esp8266 nodemcu v3 vs esp8266 wemos d1mini )?
- Replies: 6
- Views: 2941
Re: what is the difference (esp8266 nodemcu v3 vs esp8266 wemos d1mini )?
You need to be a bit more specific. What doesn't work? Is you wiring correct? Did you flash MCU with correct binary? Does it boot? Does it communicate with sensors? Does it detect button pushes?
- Wed Jun 26, 2024 12:06 pm
- Forum: General Discussion
- Topic: newbie question - what functions are suitable for an ISR context ?
- Replies: 3
- Views: 1768
Re: newbie question - what functions are suitable for an ISR context ?
Thanks. Can I ask how long processing in ISR is still acceptable? ADC Continuous Mode Driver sample recommends processing ADC data in main function after receiving notification from s_conv_done_cb callback. Since I need to do other stuff in main function, like sending HID reports, and ADC data are s...
- Mon Jun 24, 2024 8:43 pm
- Forum: General Discussion
- Topic: ESP32-H2 - Supported in PlatformIO?
- Replies: 3
- Views: 3056
Re: ESP32-H2 - Supported in PlatformIO?
I don't think this forum is correct place to ask regarding PlatformIO support. Nevertheless, you can find an answer at
https://community.platformio.org/t/i-ca ... oard/37127
https://community.platformio.org/t/i-ca ... oard/37127
- Mon Jun 24, 2024 11:48 am
- Forum: General Discussion
- Topic: memory management issue
- Replies: 3
- Views: 2176
Re: memory management issue
There is a lot of unnecessary data copying going on in your code. First, in tcp_log_message function you write the log message into local variable. The content of the variable, whole 1024 bytes, is then sent into the queue. tcp_log_task function then fetches an item from queue and copies log message...
- Sun Jun 23, 2024 8:13 pm
- Forum: General Discussion
- Topic: memory management issue
- Replies: 3
- Views: 2176
Re: memory management issue
Maybe your application is producing more log messages, than the what it its capable to send over TCP?
- Sat Jun 22, 2024 8:10 pm
- Forum: General Discussion
- Topic: newbie question - what functions are suitable for an ISR context ?
- Replies: 3
- Views: 1768
newbie question - what functions are suitable for an ISR context ?
Hi,
can you point me to documentation, where limitations and requirements of code running in ISR context are described?
Searching docs for "ISR context" didn't return any relevant results. Neither did cursory search through docs content.
Thanks.
can you point me to documentation, where limitations and requirements of code running in ISR context are described?
Searching docs for "ISR context" didn't return any relevant results. Neither did cursory search through docs content.
Thanks.