XuNeo opened a new pull request, #14920:
URL: https://github.com/apache/nuttx/pull/14920

   
   
   *Note: Please adhere to [Contributing 
Guidelines](https://github.com/apache/nuttx/blob/master/CONTRIBUTING.md).*
   
   ## Summary
   
   The `nuttxgdb` is getting more features, we need a better way to debug 
python code.
   
   In this PR, we include `debugpy` from https://github.com/microsoft/debugpy
   
   Usage:
   (gdb) debugpy
   Waiting for connection at localhost:5678
   
   In VSCode, add new configuration in launch.
   ```
   {
     "name": "Python Debugger: Remote Attach",
     "type": "debugpy",
     "request": "attach",
     "connect": {
       "host": "localhost",
       "port": 5678
     }
   }
   ```
   and launch.
   
   ## Impact
   
   No.
   
   ## Testing
   
   Tested on locally.
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to