Merge branch 'bugfix/wrong_default_toolchain_prefix' into 'master'

idf_monitor: changed default esp32 toolchain prefix to esp8266

See merge request sdk/ESP8266_RTOS_SDK!1133
This commit is contained in:
Dong Heng
2019-10-15 10:48:37 +08:00

View File

@ -96,7 +96,7 @@ TAG_SERIAL_FLUSH = 2
# regex matches an potential PC value (0x4xxxxxxx) # regex matches an potential PC value (0x4xxxxxxx)
MATCH_PCADDR = re.compile(r'0x4[0-9a-f]{7}', re.IGNORECASE) MATCH_PCADDR = re.compile(r'0x4[0-9a-f]{7}', re.IGNORECASE)
DEFAULT_TOOLCHAIN_PREFIX = "xtensa-esp32-elf-" DEFAULT_TOOLCHAIN_PREFIX = "xtensa-lx106-elf-"
DEFAULT_PRINT_FILTER = "" DEFAULT_PRINT_FILTER = ""