Skip to content

Commit

Permalink
Add magic value for P4
Browse files Browse the repository at this point in the history
The P4 on my dev board reports 0xFFFFFFFF as magic value. It's an engineering sample and it's self reporting as silicon version v0.1. I can't really judge if this should be merged though.
  • Loading branch information
mutatrum authored Sep 12, 2024
1 parent 3a74f62 commit dd58a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esptool/targets/esp32p4.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ESP32P4ROM(ESP32ROM):

BOOTLOADER_FLASH_OFFSET = 0x2000 # First 2 sectors are reserved for FE purposes

CHIP_DETECT_MAGIC_VALUE = [0x0, 0x0ADDBAD0]
CHIP_DETECT_MAGIC_VALUE = [0x0, 0x0ADDBAD0, 0xFFFFFFFF]

UART_DATE_REG_ADDR = 0x500CA000 + 0x8C

Expand Down

0 comments on commit dd58a36

Please sign in to comment.