esp32c6: add efuse support

This commit is contained in:
wuzhenghui
2022-07-08 17:33:19 +08:00
committed by Song Ruo Jing
parent 68159feb10
commit 21663bd0b9
12 changed files with 1972 additions and 2 deletions

View File

@@ -488,7 +488,7 @@ def main():
parser = argparse.ArgumentParser(description='ESP32 eFuse Manager')
parser.add_argument('--idf_target', '-t', help='Target chip type', choices=['esp32', 'esp32s2', 'esp32s3', 'esp32c3',
'esp32h2', 'esp32c2'], default='esp32')
'esp32h2', 'esp32c2', 'esp32c6'], default='esp32')
parser.add_argument('--quiet', '-q', help="Don't print non-critical status messages to stderr", action='store_true')
parser.add_argument('--debug', help='Create header file with debug info', default=False, action='store_false')
parser.add_argument('--info', help='Print info about range of used bits', default=False, action='store_true')