Search found 2238 matches

by chegewara
Wed Apr 08, 2020 7:59 am
Forum: General Discussion
Topic: Android BLE Write Timeout on ESP32
Replies: 7
Views: 9673

Re: Android BLE Write Timeout on ESP32

Ok, it looks like MTU has been negotiated to 500. All is fine. GATT ERROR (0x85) This error is nasty, because its unspecific error. Ive got it sporadically few times and never knew why. Also i couldnt find any satisfying info on internet about that error. This explains why its followed by TIMEOUT. A...
by chegewara
Wed Apr 08, 2020 7:49 am
Forum: ESP-IDF
Topic: getting starting with wroverB bare module
Replies: 1
Views: 2397

Re: getting starting with wroverB bare module

flash read err, 1000
This usually means that nothing is flashed. You can flash any example or app.
by chegewara
Wed Apr 08, 2020 7:43 am
Forum: Hardware
Topic: ESP32 Boot Mode Message
Replies: 6
Views: 8617

Re: ESP32 Boot Mode Message

0x02 - MTDO (GPIO15) .... 15 (MTDO) If driven Low, silences boot messages printed by the ROM bootloader. Has an internal pull-up, so unconnected = High = normal output. As you can see its used to silence boot messages and can be either LOW or HIGH. Its very unlikely it will prevent booting unless t...
by chegewara
Wed Apr 08, 2020 7:39 am
Forum: General Discussion
Topic: ESP32 and external watchdog problems / questions
Replies: 4
Views: 6590

Re: ESP32 and external watchdog problems / questions

Hi,
whats wrong with internal esp32 WDT?
by chegewara
Wed Apr 08, 2020 7:35 am
Forum: General Discussion
Topic: Transfer big data via bluetooth/ble?
Replies: 9
Views: 41353

Re: Transfer big data via bluetooth/ble?

I dont remember correct numbers now, but its similar speed to UART flash with 115200.
so one other possibility would be to use classic bluetooh on the ESP32-WROVER-B, right?
You can use wrover or wroom module. All but ESP32S2 modules have bluetooth classic and BLE.
by chegewara
Wed Apr 08, 2020 7:31 am
Forum: Hardware
Topic: Question about Wake from Deep Sleep using EXT1
Replies: 3
Views: 7293

Re: Question about Wake from Deep Sleep using EXT1

So my question is, if I have 3 sensors all with active LOW interrupt. I want to wake the ESP32 from deep sleep and also know which sensor has triggered an interrupt. What should I do?
Add logic inverter (NOT gate) and use any high?
by chegewara
Tue Apr 07, 2020 12:08 pm
Forum: General Discussion
Topic: Transfer big data via bluetooth/ble?
Replies: 9
Views: 41353

Re: Transfer big data via bluetooth/ble?

1) its a big file, 2) not possible with BLE, with this size it will take 5+ minutes, 3) i am using this plugin https://ionicframework.com/docs/native/bluetooth-le, If you want to have better throughput its advised to use classic bluetooth, maybe this plugin: https://ionicframework.com/docs/native/bl...
by chegewara
Tue Apr 07, 2020 2:04 am
Forum: General Discussion
Topic: Android BLE Write Timeout on ESP32
Replies: 7
Views: 9673

Re: Android BLE Write Timeout on ESP32

Can you confirm in nRF connect logs that MTU has been negotiated and confirmed?
Remember you have to call this before connect (or at least before central asks MTU):

Code: Select all

esp_ble_gatt_set_local_mtu(500);
by chegewara
Tue Apr 07, 2020 1:58 am
Forum: General Discussion
Topic: Transfer big data via bluetooth/ble?
Replies: 9
Views: 41353

Re: Transfer big data via bluetooth/ble?

There is few aspects you have take for consideration: 1) file size - what means big file, (for example i am sending 1,3MB+ file over BLE in OTA over BLE), 2) what speed you are expecting, 3) what framework you want to use for android/iOS, for example i found that ionic cordova and flutter does not s...