Search found 18 matches

by genedyne
Fri Apr 29, 2022 12:44 pm
Forum: General Discussion
Topic: ESP Flash Download Tool (Windows) fixes / features
Replies: 0
Views: 2805

ESP Flash Download Tool (Windows) fixes / features

The current version (v3.9.2) of (windows) flash download tool has taken several steps in a good direction for 'ease of use' in our production environment, but there are several annoyances that could be easily addressed: - On starting the tool, the user is _still_ presented with a dialog box to choos...
by genedyne
Wed Mar 23, 2022 5:06 pm
Forum: ESP-IDF
Topic: How do I build to support multiple variants of an Application?
Replies: 3
Views: 2583

Re: How do I build to support multiple variants of an Application?

Thanks for the pointer @burtrum. I updated to esp-idf v4.4 (I was on v4.3, which does not provide the example you cite), and checked the multi_config example. It's not ideal, in that it builds the _entire_ SDK twice (once each for 'build_prod1', and 'build_prod2' folders). Of course, apart from the ...
by genedyne
Wed Mar 23, 2022 1:48 pm
Forum: ESP-IDF
Topic: How do I build to support multiple variants of an Application?
Replies: 3
Views: 2583

How do I build to support multiple variants of an Application?

I have an App that builds (against ESP-IDF) for a board used in one product. I need to build the same App for the same board to be used in a different product. The second build requires a subset of the code (i.e., some of the files are not included) used in the original product, plus some 'variation...
by genedyne
Tue Dec 17, 2019 8:34 pm
Forum: Hardware
Topic: Random I2C issue
Replies: 2
Views: 3723

Re: Random I2C issue

Have you seen this issue ? This will only apply if you are running git-master esp-idf. I'd also suggest you slap an oscilloscope on the signals & check for clean transistions on the clock & data. You might need to adjust the pullups if these signals are noisy. Reducing the clock speed can also help ...
by genedyne
Tue Oct 29, 2019 2:33 pm
Forum: ESP-IDF
Topic: WiFi issue with Google Pixel / Android 9, 10
Replies: 16
Views: 15447

Re: WiFi issue with Google Pixel / Android 9, 10

Thanks for the link to your android bug - I've tagged it. My comments weren't intended as any kind of solution - only a test you could run to possibly provide more insight into WHAT is going on. I've found other Android vendors (Samsung especially) all seem to introduce their own bugs/features/behav...
by genedyne
Mon Oct 28, 2019 3:36 pm
Forum: ESP-IDF
Topic: SIM800 TTGO TCALL pppos_client
Replies: 11
Views: 13637

Re: SIM800 TTGO TCALL pppos_client

From the diagram you linked, only Rx & Tx are connected (RTS & CTS are not used).
Are you toggling the PWKEY signal?

From the manual:
PWRKEY should be pulled low at least 1 second and then released to power on/down the module.
by genedyne
Mon Oct 28, 2019 11:56 am
Forum: ESP-IDF
Topic: WiFi issue with Google Pixel / Android 9, 10
Replies: 16
Views: 15447

Re: WiFi issue with Google Pixel / Android 9, 10

Unfortunately, Pixel does not reconnect to this AP again and choses another network. I'd suggest you re-run this test, but 'forget' all other networks. This will give android no 'other' option, and will increase the likelihood it will follow the AP when it changes channels. I work with a system tha...
by genedyne
Fri Oct 25, 2019 5:43 pm
Forum: ESP-IDF
Topic: My multiple BLE client connection example rarely succeeds
Replies: 9
Views: 12630

Re: My multiple BLE client connection example rarely succeeds

You appear to be using Neil Kolban's ESP32-snippets (you should at least mention this - it's NOT plain esp-idf code). There is a BLE multi-connect example that might help give you some ideas: look in './esp-idf/examples/bluetooth/bluedroid/ble/gattc_multi_connect/main/gattc_multi_connect.c', and loo...
by genedyne
Fri Oct 25, 2019 5:25 pm
Forum: ESP-IDF
Topic: What else can be done during a BLE Scan callback
Replies: 2
Views: 3666

Re: What else can be done during a BLE Scan callback

Consider that a BLE scan involves the scanner hopping between the three 'broadcast channels', dwelling on each channel to listen for broadcasts. What you would need to do is either 'pause' or 'stop' this process, so you can make the radio link to a single device & read data. I'd suggest you abort th...
by genedyne
Fri Oct 25, 2019 12:20 pm
Forum: ESP-IDF
Topic: Bootloader, App, & when NVS is not 'Non-Volatile' Storage
Replies: 0
Views: 1912

Bootloader, App, & when NVS is not 'Non-Volatile' Storage

I am using a WIFI OTA bootloader to update my application code. My application code stores configuration & calibration information, in the NVS ('NON VOLATILE' Storage). WIFI requires NVS (not sure why, I think I saw something about storing PHY calibration), so the bootloader needs to initialize the ...