Search found 78 matches

by a2800276
Wed May 31, 2023 7:38 am
Forum: ESP-IDF
Topic: Esp32-S3 : OTA update informations
Replies: 6
Views: 3615

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: 3615

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: ...
by a2800276
Mon May 22, 2023 4:34 pm
Forum: Hardware
Topic: ESP32 and LoRa
Replies: 13
Views: 7439

Re: ESP32 and LoRa

So, I had a closer look at the Arduino code that seed provides and the situation is stupider than I expected. While all the names (e.g. the header named Radiohead.h and the RH_ prefixes) suggest they are using the Radiohead library they are in fact using their own dumb, bastardized, undocumented, un...
by a2800276
Mon May 22, 2023 4:22 pm
Forum: Hardware
Topic: ESP32 and LoRa
Replies: 13
Views: 7439

Re: ESP32 and LoRa

Unfortunately the seeed docs are crap. I think they just had some intern make up something. You are absolutely correct that the Grove connector provides a UART. If you have a look at the schematics linked in the datasheet, though, the grove connector is connected to the ATMega processor not the actu...
by a2800276
Mon May 22, 2023 6:22 am
Forum: Hardware
Topic: ESP32 and LoRa
Replies: 13
Views: 7439

Re: ESP32 and LoRa

Ah. The Lora module you linked to has its own atmega on board, so you may be able to use it directly without an esp32. This may even be the expected mode of operation. Unfortunately that documentation is really a pain to read though, and you are right, they mention UART and are configuring TX and RX...
by a2800276
Mon May 22, 2023 6:02 am
Forum: ESP-IDF
Topic: ESP32 - HTTPS Updating firmware on old devices in the field
Replies: 2
Views: 1249

Re: ESP32 - HTTPS Updating firmware on old devices in the field

We own the domain name the device tries to download from. Can I configure a server somehow to work with this old expired certificate? (I don't care if it is not secure) You can certainly do that, provided you have access to the server certificate, private key (and possibly passphrase for the privat...
by a2800276
Fri May 19, 2023 2:45 pm
Forum: Hardware
Topic: Esp32c3 D+ and D- pins as a serial port
Replies: 8
Views: 7343

Re: Esp32c3 D+ and D- pins as a serial port

In your previous example, the code was using the following hardware peripheral of the ESP32C3 chip: UART TX and RX The signals coming out of the chip's pins were UART signals. That UART was connected to the UART->USB bridge chip linked to above that was available on your old board. That chip speaks ...
by a2800276
Fri May 19, 2023 12:27 pm
Forum: Hardware
Topic: Esp32c3 D+ and D- pins as a serial port
Replies: 8
Views: 7343

Re: Esp32c3 D+ and D- pins as a serial port

Basically I have been working with uart to send messages back and forth from a laptop environment using esp32c3 mini1 dev kit. I have been using Uart Channel 1 with gpio pins 1 & 0 as the dev kit has an onboard USB to uart converter. This connection uses an additional chip on board the dev kit, lab...
by a2800276
Fri May 19, 2023 11:19 am
Forum: Hardware
Topic: ESP32 and LoRa
Replies: 13
Views: 7439

Re: ESP32 and LoRa

The serial is simply from the fact that the board has the Grove UART socket on it. Seemed like the easy play. Oh how wrong was I?? Presumably fairly wrong, because there is no such thing as a Grove UART socket :? Grove connectors are the same for any supported protocol. Like I said: Lora really suc...