Search found 7 matches

by Serg1987
Fri Dec 03, 2021 8:01 am
Forum: ESP-IDF
Topic: ESP32 Resets 0x7 (TG0WDT_SYS_RESET) continuously
Replies: 2
Views: 4788

Re: ESP32 Resets 0x7 (TG0WDT_SYS_RESET) continuously

Anybody here??
How can I migrate from PICO D4 to WROOM32??
by Serg1987
Thu Dec 02, 2021 3:44 pm
Forum: ESP-IDF
Topic: ESP32 Resets 0x7 (TG0WDT_SYS_RESET) continuously
Replies: 2
Views: 4788

Re: ESP32 Resets 0x7 (TG0WDT_SYS_RESET) continuously

I will write any additional things that I found. I found out that I2S library initializes with troubles and freezes, then WDT resets chip. I disabled I2C and found that my android app cannot connect to ESP32 throw Bluetooth. Firmware shows: I (51834) GATT Server: ESP_GATTS_DISCONNECT_EVT, reason = 1...
by Serg1987
Wed Dec 01, 2021 12:56 pm
Forum: ESP-IDF
Topic: ESP32 Resets 0x7 (TG0WDT_SYS_RESET) continuously
Replies: 2
Views: 4788

ESP32 Resets 0x7 (TG0WDT_SYS_RESET) continuously

Hello. I have firmware, that works fine at ESP32-PICO-KIT board. But when I try launch this at ESP32-WROOM32, firmware crashes. In log I see I (941) ble gap: advertising start successfully ets Jun 8 2016 00:22:57 rst:0x7 (TG0WDT_SYS_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk...
by Serg1987
Thu Nov 18, 2021 11:20 am
Forum: ESP-IDF
Topic: FAT boot sector doesn't starts from needed address
Replies: 1
Views: 1343

FAT boot sector doesn't starts from needed address

Hello. I mount partition, defined as 'fat' subtype. This defined in *csv: umsc, data, fat, 0x180000, 0x100000, Fat mounted with OK with esp_vfs_fat_spiflash_mount When I try to read data: spi_flash_read(0x180000+(secnum*4096),sbuf,4096); But I get 0x: ff ff ff ff .... 4096 times in sbuf. And only in...
by Serg1987
Mon Apr 06, 2020 5:56 am
Forum: ESP-IDF
Topic: Cannot build WiFi AP example (<property> not defined)
Replies: 2
Views: 3036

Re: Cannot build WiFi AP example (<property> not defined)

O, man. Great thanks. ;)
I still included

Code: Select all

#include "build/config/sdkconfig.h"

And error dissapeared
by Serg1987
Sun Apr 05, 2020 3:46 pm
Forum: ESP-IDF
Topic: Cannot build WiFi AP example (<property> not defined)
Replies: 2
Views: 3036

Cannot build WiFi AP example (<property> not defined)

Hello again. This is my second attempt for getting help. I try to build example from esp-idf : esp-idf/examples/wifi/getting_started/softAP/ But, it shows me error in line wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); Error (in WIFI_INIT_CONFIG_DEFAULT()) : https://i.ibb.co/x8SD5SG/undef2.png...
by Serg1987
Fri Apr 03, 2020 3:42 am
Forum: ESP-IDF
Topic: WiFi set configuration ERROR. (property not defined)
Replies: 0
Views: 2821

WiFi set configuration ERROR. (property not defined)

Hello. I use IDF v4.0 And I simple try to set configuration using wifi_init_config_t structure: wifi_init_config_t wifiInitializationConfig = WIFI_INIT_CONFIG_DEFAULT(); esp_wifi_init(&wifiInitializationConfig); esp_wifi_set_mode(WIFI_MODE_APSTA); But WIFI_INIT_CONFIG_DEFAULT() highlited with red (C...