Răsfoiți Sursa

* fixed generation of .gdbinit file (esp32c3 dbg issue)

Martin Vychodil 5 ani în urmă
părinte
comite
7bbe2a235f
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      tools/idf_py_actions/debug_ext.py

+ 2 - 2
tools/idf_py_actions/debug_ext.py

@@ -98,10 +98,10 @@ def action_extensions(base_actions, project_path):
 
     def create_local_gdbinit(gdbinit, elf_file):
         with open(gdbinit, 'w') as f:
-            f.write('target remote :3333\n')
             if os.name == 'nt':
                 elf_file = elf_file.replace('\\','\\\\')
-            f.write('symbol-file {}\n'.format(elf_file))
+            f.write('file {}\n'.format(elf_file))
+            f.write('target remote :3333\n')
             f.write('mon reset halt\n')
             f.write('flushregs\n')
             f.write('thb app_main\n')