Home
last modified time | relevance | path

Searched refs:flid_lowbyte (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dstub_flasher.c141 uint8_t flid_lowbyte = (flash_id >> 16) & 0xFF; in flash_larger_than_16mb() local
142 …return ((flid_lowbyte >= 0x19 && flid_lowbyte < 0x30) || (flid_lowbyte >= 0x39)); // See DETECTED_… in flash_larger_than_16mb()
/hal_espressif-latest/tools/esptool_py/esptool/
Dcmds.py1181 flid_lowbyte = (flash_id >> 16) & 0xFF
1182 print("Device: %02x%02x" % ((flash_id >> 8) & 0xFF, flid_lowbyte))
1184 "Detected flash size: %s" % (DETECTED_FLASH_SIZES.get(flid_lowbyte, "Unknown"))