Search found 75 matches

by a2800276
Sun Jun 11, 2023 7:20 am
Forum: ESP-IDF
Topic: mqtt_client keepalive
Replies: 6
Views: 3476

Re: mqtt_client keepalive

This seems to be a clear case of "parameter does not mean what I want it to mean" :D Read section "3.1.2.10 Keep Alive" of the MQTT spec : the client has to send a message every keep alive at the latest, like microcontroller said. And the server must close the connection at one-and-a-half times keep...
by a2800276
Tue Jun 06, 2023 5:03 pm
Forum: ESP-IDF
Topic: Esp32-S3 : OTA update informations
Replies: 6
Views: 3053

Re: Esp32-S3 : OTA update informations

Are you sure this example uses BLE ?? Because I see https and I think this is related to IP am I right ? The `advanced_https_ota` example does contain ble code . There's not enough documentation to tell whether it uses ble to trigger an https OTA update or whether the updates themselves are perform...
by a2800276
Tue Jun 06, 2023 9:09 am
Forum: ESP32 Arduino
Topic: Changing partition size via OTA
Replies: 8
Views: 9935

Re: Changing partition size via OTA

Urgh, that's evil! I like it! :twisted:

I think you may still have problems, because the high level partition table routines (e.g. `esp_find_partition`) will still try to use the "default" partition tables, so at least look out for that...
by a2800276
Tue Jun 06, 2023 7:28 am
Forum: ESP32 Arduino
Topic: Changing partition size via OTA
Replies: 8
Views: 9935

Re: Changing partition size via OTA

However, if I could access additional memory via an OTA software update, that would be really useful! Don't suppose you could point to a link or something explaining how to do what you describe? I believe if you poke around the forum you'll find an example somewhere of someone overwriting the parti...
by a2800276
Sun Jun 04, 2023 8:32 am
Forum: ESP-IDF
Topic: Missing Compiler
Replies: 5
Views: 2506

Re: Missing Compiler

Did you follow the instructions for installing the idf precisely? Specifically did you call the install that script to install the compilers etc after checking out the repository, and set necessary environment params?
by a2800276
Sun Jun 04, 2023 8:29 am
Forum: ESP-IDF
Topic: mqtt connection issue error code: ESP_ERR_ESP_TLS_CONNECTION_TIMEOUT
Replies: 1
Views: 1930

Re: mqtt connection issue error code: ESP_ERR_ESP_TLS_CONNECTION_TIMEOUT

Port 1883 is usually not configured to support mqtt over TLS. It seems as though you may have configured your connection to expect TLS and therefore things aren't working. Could you post the code where you're configuring the connection parameters?
by a2800276
Sun Jun 04, 2023 8:25 am
Forum: ESP32 Arduino
Topic: problems with esp-32 coding
Replies: 3
Views: 1446

Re: problems with esp-32 coding

The problem is that you're checking IF new data is available from Bluetooth and saving that data to a variable `datibt`. In a second step, you are sending the string stored in `dataibt` to the API. The problem is that the second step is not constrained by the original IF. The data is sent to the API...
by a2800276
Wed May 31, 2023 7:38 am
Forum: ESP-IDF
Topic: Esp32-S3 : OTA update informations
Replies: 6
Views: 3053

Re: Esp32-S3 : OTA update informations

Ok, so I guess I answered your question?

https://github.com/espressif/esp-idf/tr ... https_ota
by a2800276
Tue May 30, 2023 5:31 pm
Forum: ESP-IDF
Topic: Esp32-S3 : OTA update informations
Replies: 6
Views: 3053

Re: Esp32-S3 : OTA update informations

You are correct in the 'native_ota_example' and 'simple_ota_example' don't seem to contain BLE code. IDF 4.4 contains four ota example projects and IDF 5 contains five of them. If your IDF only contains two OTA sample projects, I can only assume you are using an old IDF version (persumbly v.2 :lol: ...