mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-07 14:44:32 +02:00
Merge branch 'bugfix/fixed-unsatisfiable-condition' into 'master'
Fixed comparison with ESP_MONITOR_DECODE Closes IDFGH-7482 See merge request espressif/esp-idf!18325
This commit is contained in:
@@ -27,7 +27,7 @@ def get_parser(): # type: () -> argparse.ArgumentParser
|
|||||||
'--disable-address-decoding', '-d',
|
'--disable-address-decoding', '-d',
|
||||||
help="Don't print lines about decoded addresses from the application ELF file",
|
help="Don't print lines about decoded addresses from the application ELF file",
|
||||||
action='store_true',
|
action='store_true',
|
||||||
default=os.environ.get('ESP_MONITOR_DECODE') == 0
|
default=os.getenv('ESP_MONITOR_DECODE') == '0'
|
||||||
)
|
)
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
|
Reference in New Issue
Block a user