Search found 17 matches
- Sun Mar 03, 2024 11:24 am
- Forum: ESP-IDF
- Topic: DFU-OTA using ESP BLE MESH
- Replies: 1
- Views: 9882
Re: DFU-OTA using ESP BLE MESH
Have you made any progress on this?
- Thu Feb 08, 2024 7:51 pm
- Forum: Hardware
- Topic: Flash ESP32C3 using UART1
- Replies: 0
- Views: 461
Flash ESP32C3 using UART1
Hello,
Putting the ESP32C3 in bootloader mode, gives me the option to flash the ESP32C3 using USB/UART0/UART1
I am able to flash using USB/UART0, however I could not find any documentation of selecting UART1, How would I go about flashing the ESP32C3 using UART1?
Thank you,
Shahin
Putting the ESP32C3 in bootloader mode, gives me the option to flash the ESP32C3 using USB/UART0/UART1
I am able to flash using USB/UART0, however I could not find any documentation of selecting UART1, How would I go about flashing the ESP32C3 using UART1?
Thank you,
Shahin
- Wed Dec 13, 2023 4:55 pm
- Forum: ESP-IDF
- Topic: ESP BLE MESH 1.1
- Replies: 1
- Views: 12702
Re: ESP BLE MESH 1.1
Have you made any more progress on this?
- Wed Nov 08, 2023 3:20 pm
- Forum: ESP-IDF
- Topic: send OOB for mesh
- Replies: 1
- Views: 652
Re: send OOB for mesh
Solved via bt_mesh_provisioner_set_oob_input_data
- Wed Nov 08, 2023 2:27 pm
- Forum: ESP-IDF
- Topic: send OOB for mesh
- Replies: 1
- Views: 652
send OOB for mesh
Hello, I have been working on ble mesh between nRF and esp. my nRF requests an OOB integer. ESP receives this information in the call-back - void prov_callback(esp_ble_mesh_prov_cb_event_t event, esp_ble_mesh_prov_cb_param_t *param) { switch (event) { case ESP_BLE_MESH_PROVISIONER_PROV_INPUT_EVT: { ...
- Mon Oct 30, 2023 4:57 pm
- Forum: General Discussion
- Topic: CICD tutorial?
- Replies: 0
- Views: 604
CICD tutorial?
Hello,
Is there a basic CICD tutorial for github/gitlab available?
Is there a basic CICD tutorial for github/gitlab available?
- Tue May 30, 2023 2:04 pm
- Forum: General Discussion
- Topic: BLE MESH ZEPHYR
- Replies: 0
- Views: 1011
BLE MESH ZEPHYR
Hello, As BLE MESH runs on the zephyr stack, I'd have assumed the ble mesh examples would work on the Zephyr SDK, unfortunately they do not, I have been told by zephyr staff members that others have got it to work but are unable to find who. Has anyone here managed to get Zephyr BLE MESH to work on ...
- Wed May 24, 2023 1:01 pm
- Forum: ESP-IDF
- Topic: ESP32C3 Unprovisioned after powerloss BLE MESH
- Replies: 0
- Views: 806
ESP32C3 Unprovisioned after powerloss BLE MESH
Hello,
For the esp_ble_mesh -> ble_mesh_wifi_coexist, The ESP32C3 becomes provisioned after powerloss, this is normal behaviour? I'd have assumed that the data is written to flash and upon booting up, the device should stay provisioned.
Same issue other examples such as with on/off server
For the esp_ble_mesh -> ble_mesh_wifi_coexist, The ESP32C3 becomes provisioned after powerloss, this is normal behaviour? I'd have assumed that the data is written to flash and upon booting up, the device should stay provisioned.
Same issue other examples such as with on/off server
- Tue Jan 17, 2023 12:13 pm
- Forum: ESP-IDF
- Topic: advanced_usb_cdc for the ESP32C3
- Replies: 1
- Views: 1148
Re: advanced_usb_cdc for the ESP32C3
SOLVED
USB_CDC is not needed, Setting the console basic to ESP_CONSOLE_USB_SERIAL_JTAG worked.
USB_CDC is not needed, Setting the console basic to ESP_CONSOLE_USB_SERIAL_JTAG worked.
- Mon Jan 16, 2023 10:34 am
- Forum: ESP-IDF
- Topic: advanced_usb_cdc for the ESP32C3
- Replies: 1
- Views: 1148
advanced_usb_cdc for the ESP32C3
Hello, I would like to use ESP32 console example, however I would like to use the USB rather than a seperate UART. the only example available is this - https://github.com/espressif/esp-idf/tree/master/examples/system/console/advanced_usb_cdc , however this is only available on the S2, has anyone imp...