Search found 6 matches
- Sun Sep 15, 2024 2:08 pm
- Forum: General Discussion
- Topic: Magic byte ERROR
- Replies: 2
- Views: 1245
Re: Magic byte ERROR
I used the function esp_rom_spiflash_write() in bootloader and this function broke all. Need to use bootloader_flash_write()!!!!!
- Sun Sep 15, 2024 12:29 pm
- Forum: General Discussion
- Topic: Magic byte ERROR
- Replies: 2
- Views: 1245
Magic byte ERROR
Hi. I want to make the custom bootloader for esp32 WROOM. I made the custom partition table: # Name, Type, SubType, Offset, Size, Flags boot, data, 0xFE, 0x17000, 0x1000, meta, data, 0xFF, 0x18000, 0x2000, nvs, data, nvs, 0x1A000, 0x6000, phy_init, data, phy, 0x20000, 0x1000, storage, data, , 0x2100...
- Wed Apr 05, 2023 5:14 am
- Forum: ESP-IDF
- Topic: Writing to flash without crash...
- Replies: 0
- Views: 820
Writing to flash without crash...
Hi. I want to add custom wi-fi bootloader functional in my app. I made 2 app partitions for firmware and a small firmware for select a partition for boot. I want to write the firmware to an inactive section of the app. But I don't understand how to do it right. If I call function esp_flash_write() o...
- Fri Mar 03, 2023 9:46 am
- Forum: ESP-IDF
- Topic: AP+STA with static IP & WEB inretface
- Replies: 0
- Views: 817
AP+STA with static IP & WEB inretface
Hi. I want to connect ESP32 to Wi-Fi network (STA MODE). And I don't have any LCD, keyboard, etc in my device. Therefore I need set SSID and password with WEB UI (AT MODE). Also I need static IP for WEB UI and dynamic IP for Wi-Fi network. I want to make the next algorithm: 1) Enabling AP mode by lo...
- Wed Nov 16, 2022 1:01 pm
- Forum: ESP-IDF
- Topic: BLE notification stack overflow
- Replies: 3
- Views: 1627
Re: BLE notification stack overflow
The function printf() is not called during normal operation of the software. I deleted the printf(), but the ESP32 is also crashing.
- Mon Nov 14, 2022 1:43 pm
- Forum: ESP-IDF
- Topic: BLE notification stack overflow
- Replies: 3
- Views: 1627
BLE notification stack overflow
Hi! I want to start BLE server with the notifications on ESP32. I was run a "gatts_demo" example in Visual Studio 2022. I make notification sends with RTOS function: void V_notif_task(void *p) { uint8_t notify_data[32]; memcpy(notify_data, "notify sended", 13); while (1) { if (ne == true) { if (gatt...