Search found 44 matches

by Aussie Susan
Wed Aug 12, 2020 3:14 am
Forum: ESP32 Arduino
Topic: Configure GPIO 4 low during Boot
Replies: 3
Views: 4375

Re: Configure GPIO 4 low during Boot

@boarchuz - that code would only get executed AFTER the boot sequence.
The OP was asking about how to keep the pin low DURING boot.
Susan
by Aussie Susan
Fri May 01, 2020 4:02 am
Forum: ESP32 Arduino
Topic: That is a somewhat curious forum here...
Replies: 8
Views: 9010

Re: That is a somewhat curious forum here...

It probably means that you need to update your library.
I've had some issues where code examples use a newer version of the library and therefore make API calls that are not in my version.
Also the link that you were provided does contain the name 'Latest' in the URL.
Susan
by Aussie Susan
Mon Apr 27, 2020 6:13 am
Forum: Documentation
Topic: ESP 32 - BLE - WiFi Coexistance
Replies: 1
Views: 5838

Re: ESP 32 - BLE - WiFi Coexistance

My app scans for BLE servers, connects and reads the characteristic values it is interested in and then sends those to an MQTT hub via WiFi. I'm not doing anything fancy such as turning BLE or WiFI on or off (except to turn both on at the start of the app) but neither am I trying to overlap BLE and ...
by Aussie Susan
Mon Apr 13, 2020 4:36 am
Forum: ESP-IDF
Topic: ESP32-WROOM NimBle cannot connect multiple clients to GATT server
Replies: 2
Views: 4401

Re: ESP32-WROOM NimBle cannot connect multiple clients to GATT server

I believe there is a parameter in the menuconfig settings for the number of connections - have you checked that?
(I say 'believe' because I've not needed to change it but I do recall seeing it there - I'm not able to check right now.)
Susan
by Aussie Susan
Sun Mar 29, 2020 4:41 am
Forum: ESP-IDF
Topic: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT
Replies: 14
Views: 13973

Re: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT

I think I have found the solution. In the ESP_GATTC_SEARCH_RES_EVT, if the service was one I was interested in, I was calling esp_ble_gattc_get_all_char and then remembered the characteristic handle fr later on. In the ESP_GATTC_SEARCH_CMPL_EVT I was reading the queued up characteristic handle and c...
by Aussie Susan
Fri Mar 27, 2020 10:59 pm
Forum: ESP-IDF
Topic: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT
Replies: 14
Views: 13973

Re: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT

Thank you for your patch which I have just applied. I get the text "Inside esp_ble_gattc_read_char" but nothing after that. Also, what is the point of the call to 'read char' from within the 'write char' function (the 2nd part of the patch)? I'm never calling write char and it does not seem to be ca...
by Aussie Susan
Tue Mar 10, 2020 1:48 am
Forum: Hardware
Topic: ESP32 WROVER stuck in boot loop
Replies: 3
Views: 6512

Re: ESP32 WROVER stuck in boot loop

How are you flashing the device?
I was getting this using the QIO method and it was solved by changing to DIO. (This is mentioned at the bottom on one of the documents I found on the web)
Susan
by Aussie Susan
Thu Mar 05, 2020 2:23 am
Forum: ESP-IDF
Topic: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT
Replies: 14
Views: 13973

Re: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT

I think it is a bit far off until April Fools day - but that can't be a serious answer! OK - so is what I'm trying to do - call the 'esp_ble_gattc_read_char()' function from the callback routine - the correct way to do this? Is it possible to read multiple characteristics in this way? Are there any ...
by Aussie Susan
Tue Mar 03, 2020 1:12 am
Forum: ESP-IDF
Topic: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT
Replies: 14
Views: 13973

Re: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT

The code in that part of the app is:

Code: Select all

				status = esp_ble_gattc_read_char( global_gattc_if, current_conn_id,
								characteristic.char_handle, ESP_GATT_AUTH_REQ_NONE);
				ESP_ERROR_CHECK(status);
As nothing triggers the 'ESP_ERROR_CHECK' I take it that it is not returning an error.
Susan
by Aussie Susan
Fri Feb 28, 2020 1:50 am
Forum: ESP-IDF
Topic: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT
Replies: 14
Views: 13973

Re: Can't get esp_ble_gattc_read_char to trigger ESP_GATTC_READ_CHAR_EVT

1) Yes it is readable
2) No because I've read it from some other devices without bonding
(I wrote the server's code as well so I know how it is configured)
Susan