Search found 7 matches
- Wed Nov 14, 2018 6:18 pm
- Forum: Hardware
- Topic: EN300328 RSE ESP-WROOM-32 Failure
- Replies: 3
- Views: 5619
Re: EN300328 RSE ESP-WROOM-32 Failure
Does it look like the testing may be suspicious or maybe a bad board or something? I'll admit that my initial thought was maybe something was done wrong, plus we've been dealing with a test engineer that doesn't seem to be very experienced and the language barrier has been pretty severe as well. Unf...
- Mon Nov 12, 2018 11:39 pm
- Forum: Hardware
- Topic: EN300328 RSE ESP-WROOM-32 Failure
- Replies: 3
- Views: 5619
EN300328 RSE ESP-WROOM-32 Failure
We have a product that is going to market that needed to run through CE RED testing. It uses the pre-certified ESP-WROOM-32, but because we have a second low power radio on our PCB we had to re-run the testing of the module. As part of this testing they had to run the ESP32 in its stand-alone test m...
- Wed Oct 31, 2018 8:03 pm
- Forum: ESP-IDF
- Topic: Clear the BLE whitelist
- Replies: 6
- Views: 10675
Re: Clear the BLE whitelist
Did you have any luck?
I'm more curious if you were able to even get whitelisting to work at all? I'm trying to allow connections only from a specific phone and no luck as of yet.
I'm more curious if you were able to even get whitelisting to work at all? I'm trying to allow connections only from a specific phone and no luck as of yet.
- Thu Aug 03, 2017 1:39 am
- Forum: General Discussion
- Topic: uxTaskGetSystemState() working BUT runtime stats vary wildly
- Replies: 5
- Views: 9955
Re: uxTaskGetSystemState() working BUT runtime stats vary wildly
From what I could tell, the xthal_get_ccount() function returns a different value for different cores. So I wrote functions equivalent to yours, but CPU ID aware. extern uint64_t get_run_time_counter_value(void); extern void init_run_time_counter(void); #define portGET_RUN_TIME_COUNTER_VALUE() get_r...
- Tue Apr 11, 2017 11:33 pm
- Forum: ESP-IDF
- Topic: smp_br_connect_callback is called on unexpected transport 2
- Replies: 6
- Views: 12173
Re: smp_br_connect_callback is called on unexpected transport 2
Did you ever figure this out? I'm getting this message on connect: BT: smp_br_connect_callback is called on unexpected transport 2 and this on every notify event BT: bta_to_btc_uuid UUID len is invalid 0 I'm having lots of issues with BT and wonder if this is somehow related or if these error messag...
- Tue Mar 21, 2017 4:17 am
- Forum: ESP-IDF
- Topic: ESP32 BLE - iBeacon scan not working reliably
- Replies: 3
- Views: 9963
Re: ESP32 BLE - iBeacon scan not working reliably
Did you have any luck with this? I'm having some similar issues. If I scan on my Android phone using the "nRF Connect" app, I can see advertisements coming from my device very regularly at ~25ms with nothing more than ~50ms or so. Doing the same scan on ESP32 I get some random gaps of around 400ms o...
- Wed Feb 01, 2017 7:48 pm
- Forum: Hardware
- Topic: Uart Rx/tx
- Replies: 17
- Views: 13946
Uart Rx/tx
Does anyone know if it would be possible to configure the same pin for both UART TX and UART RX simultaneously? I have seen this feature in certain other micros and it can be used, for example, on a LIN bus or rs485 where there is a single wire/signal bus and extra error checking is not required. I'...