-
Notifications
You must be signed in to change notification settings - Fork 7.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wifi cannot connect with BLK3 or Custom Mac Address (IDFGH-2096) #4263
Comments
You can't set the multicast/group bit so your first byte could be 0x48 but not 0x49 |
Hi @filzek , @negativekelvin beat me to answering by 3 minutes, it seems. :) The Angus |
Okay, the efuse has a valid mac address, and the code seems valid to run, but wifi simple doesn't work. @projectgus and @negativekelvin so the problem is with the wifi interface? |
@filzek The MAC To make it into a unicast MAC then you need to clear bit 1, changing it to BTW, because If you have already saved this MAC in efuse then you can change it in code after you read it but before you call
|
Sure, I have no Idea why we didn't see it before, the lab testing was mean to be 49:4f:54 to hex to text IOT, but we forgot about multicast address. Anyway, we found one brick in the wall, so, let's fix multicast address in interfaces setup. |
Closes espressif#4263 Closes IDFGH-2096
mode:DIO, clock div:200,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
load:0x3fff0018,len:4
load:0x3fff001c,len:6916
load:0x40078000,len:14228
ho 0 tail 12 room 4
load:0x40080400,len:4296
entry 0x400806e4
I (71) boot: Chip Revision: 1
I (71) boot_comm: chip revision: 1, min. bootloader chip revision: 0
I (40) boot: ESP-IDF v4.1-dev-592-g758db1e00-dirty 2nd stage bootloader
I (40) boot: compile time 17:35:46
I (41) boot: Enabling RNG early entropy source...
I (47) boot: SPI Speed : 40MHz
I (51) boot: SPI Mode : DIO
I (55) boot: SPI Flash Size : 2MB
I (59) boot: Partition Table:
I (63) boot: ## Label Usage Type ST Offset Length
I (70) boot: 0 nvs WiFi data 01 02 00009000 00006000
I (77) boot: 1 phy_init RF data 01 01 0000f000 00001000
I (85) boot: 2 factory factory app 00 00 00010000 00100000
I (92) boot: End of partition table
I (96) boot_comm: chip revision: 1, min. application chip revision: 0
I (104) esp_image: segment 0: paddr=0x00010020 vaddr=0x3f400020 size=0x231c4 (143812) map
I (165) esp_image: segment 1: paddr=0x000331ec vaddr=0x3ffbdb60 size=0x0380c ( 14348) load
I (171) esp_image: segment 2: paddr=0x00036a00 vaddr=0x40080000 size=0x00400 ( 1024) load
0x40080000: _WindowOverflow4 at C:/Users/filze/Desktop/esp-idf/components/freertos/xtensa_vectors.S:1778
I (172) esp_image: segment 3: paddr=0x00036e08 vaddr=0x40080400 size=0x09208 ( 37384) load
I (196) esp_image: segment 4: paddr=0x00040018 vaddr=0x400d0018 size=0xa2688 (665224) map
0x400d0018: _stext at ??:?
I (436) esp_image: segment 5: paddr=0x000e26a8 vaddr=0x40089608 size=0x0dd40 ( 56640) load
0x40089608: spi_flash_munmap at C:/Users/filze/Desktop/esp-idf/components/spi_flash/flash_mmap.c:261 (discriminator 3)
I (475) boot: Loaded app from partition at offset 0x10000
I (475) boot: Disabling RNG early entropy source...
I (475) cpu_start: Pro cpu up.
I (479) cpu_start: Application information:
I (484) cpu_start: Project name: blufi_demo
I (489) cpu_start: App version: v4.1-dev-592-g758db1e00-dirty
I (496) cpu_start: Compile time: Oct 28 2019 17:35:15
I (502) cpu_start: ELF file SHA256: becd0bece4db7038...
I (508) cpu_start: ESP-IDF: v4.1-dev-592-g758db1e00-dirty
I (515) cpu_start: Starting app cpu, entry point is 0x4008128c
0x4008128c: call_start_cpu1 at C:/Users/filze/Desktop/esp-idf/components/esp32/cpu_start.c:276
I (0) cpu_start: App cpu up.
I (525) heap_init: Initializing. RAM available for dynamic allocation:
I (532) heap_init: At 3FFAFF10 len 000000F0 (0 KiB): DRAM
I (538) heap_init: At 3FFB6388 len 00001C78 (7 KiB): DRAM
I (544) heap_init: At 3FFB9A20 len 00004108 (16 KiB): DRAM
I (550) heap_init: At 3FFBDB5C len 00000004 (0 KiB): DRAM
I (556) heap_init: At 3FFCC378 len 00013C88 (79 KiB): DRAM
I (562) heap_init: At 3FFE0440 len 00003AE0 (14 KiB): D/IRAM
I (569) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM
I (575) heap_init: At 40097348 len 00008CB8 (35 KiB): IRAM
I (581) cpu_start: Pro cpu start user code
I (600) spi_flash: detected chip: generic
I (600) spi_flash: flash io: dio
W (601) spi_flash: Detected size(4096k) larger than the size in the binary image header(2048k). Using the size in the binary image header.
I (611) cpu_start: Starting scheduler on PRO CPU.
I (0) cpu_start: Starting scheduler on APP CPU.
I (622) Switch Beta: Base MAC Address read from EFUSE BLK3
I (632) Switch Beta: Using "0x49, 0x4f, 0x54, 0x0, 0x1, 0x31" as base MAC address
I (642) WIFI_STA MAC: 0x49, 0x4f, 0x54, 0x0, 0x1, 0x31
I (642) SoftAP MAC: 0x49, 0x4f, 0x54, 0x0, 0x1, 0x32
I (652) BT MAC: 0x49, 0x4f, 0x54, 0x0, 0x1, 0x33
I (652) Ethernet MAC: 0x49, 0x4f, 0x54, 0x0, 0x1, 0x34
I (692) wifi: wifi driver task: 3ffcf780, prio:23, stack:3584, core=0
I (802) wifi: wifi firmware version: 65d40b6
I (802) wifi: config NVS flash: enabled
I (802) wifi: config nano formating: disabled
I (802) wifi: Init dynamic tx buffer num: 32
I (812) wifi: Init data frame dynamic rx buffer num: 32
I (812) wifi: Init management frame dynamic rx buffer num: 32
I (822) wifi: Init management short buffer num: 32
I (822) wifi: Init static rx buffer size: 1600
I (822) wifi: Init static rx buffer num: 10
I (832) wifi: Init dynamic rx buffer num: 32
W (832) phy_init: failed to load RF calibration data (0x1102), falling back to full calibration
I (972) phy: phy_version: 4102, 2fa7a43, Jul 15 2019, 13:06:06, 0, 2
I (1032) wifi: mode : sta (49:4f:54:00:01:31)
I (1032) BTDM_INIT: BT controller compile version [6decaaf]
I (1342) BLUFI_EXAMPLE: BD ADDR: 49:4f:54:00:01:33
I (1342) BLUFI_EXAMPLE: BLUFI VERSION 0102
I (1342) BLUFI_EXAMPLE: BLUFI init finish
I (20212) BLUFI_EXAMPLE: BLUFI ble connect
I (22212) BLUFI_EXAMPLE: BLUFI Set WIFI opmode 1
I (22402) BLUFI_EXAMPLE: Recv STA SSID TestingWiFi
I (22502) BLUFI_EXAMPLE: Recv STA PASSWORD 1234567890
I (22652) BLUFI_EXAMPLE: BLUFI requset wifi connect to AP
I (22772) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (23322) wifi: state: init -> auth (b0)
I (24322) wifi: state: auth -> init (200)
I (24322) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (26502) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (26502) wifi: state: init -> auth (b0)
I (27502) wifi: state: auth -> init (200)
I (27502) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (29682) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (29682) wifi: state: init -> auth (b0)
I (30682) wifi: state: auth -> init (200)
I (30682) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (32872) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (32872) wifi: state: init -> auth (b0)
I (33872) wifi: state: auth -> init (200)
I (33872) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (36052) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (36052) wifi: state: init -> auth (b0)
I (37052) wifi: state: auth -> init (200)
I (37052) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (39232) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (39232) wifi: state: init -> auth (b0)
I (40232) wifi: state: auth -> init (200)
I (40232) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (42412) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (42412) wifi: state: init -> auth (b0)
I (43422) wifi: state: auth -> init (200)
I (43422) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (45602) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (45602) wifi: state: init -> auth (b0)
I (46602) wifi: state: auth -> init (200)
I (46602) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (48782) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
I (48782) wifi: state: init -> auth (b0)
E (49082) BT_BTC: btc_blufi_recv_handler seq 0 is not expect 11
E (49082) BLUFI_EXAMPLE: BLUFI report error, error code 0
E (49112) BT_BTC: btc_blufi_recv_handler seq 1 is not expect 11
E (49112) BLUFI_EXAMPLE: BLUFI report error, error code 0
E (49212) BT_BTC: btc_blufi_recv_handler seq 2 is not expect 11
E (49222) BLUFI_EXAMPLE: BLUFI report error, error code 0
E (49312) BT_BTC: btc_blufi_recv_handler seq 3 is not expect 11
E (49312) BLUFI_EXAMPLE: BLUFI report error, error code 0
I (49782) wifi: state: auth -> init (200)
I (49782) wifi: new:<1,0>, old:<1,0>, ap:<255,255>, sta:<1,0>, prof:1
E (50192) BT_BTC: btc_blufi_recv_handler seq 0 is not expect 11
E (50192) BLUFI_EXAMPLE: BLUFI report error, error code 0
E (50382) BT_BTC: btc_blufi_recv_handler seq 1 is not expect 11
E (50392) BLUFI_EXAMPLE: BLUFI report error, error code 0
E (50582) BT_BTC: btc_blufi_recv_handler seq 2 is not expect 11
E (50582) BLUFI_EXAMPLE: BLUFI report error, error code 0
E (50722) BT_BTC: btc_blufi_recv_handler seq 3 is not expect 11
E (50732) BLUFI_EXAMPLE: BLUFI report error, error code 0
I (51902) BLUFI_EXAMPLE: BLUFI ble disconnect
So, if you use the BLK3 mac address it simple doest work, blufi or wifi simple sta / sta/ap connection.
Mac from efuse BLK3 code from the esp-idf example:
uint8_t mac_addr[8] = {0};
esp_err_t ret = ESP_OK;
uint8_t base_mac_addr[6] = {0};
//Get base MAC address from EFUSE BLK3
ret = esp_efuse_mac_get_custom(base_mac_addr);
if (ret != ESP_OK) {
ESP_LOGE(TAG, "Failed to get base MAC address from EFUSE BLK3. (%s)", esp_err_to_name(ret));
ESP_LOGI(TAG, "Defaulting to base MAC address in BLK0 of EFUSE");
esp_efuse_mac_get_default(base_mac_addr);
ESP_LOGI(TAG, "Base MAC Address read from EFUSE BLK0");
}
else {
ESP_LOGI(TAG, "Base MAC Address read from EFUSE BLK3");
}
Wifi simple doesnt work, there is a WIFI problem with BLK3 custom mac address
The text was updated successfully, but these errors were encountered: