mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Use :1234 as default GDB port for QEMU
This commit is contained in:
@ -100,6 +100,8 @@ class DebugServer(BaseProcess):
|
||||
self._debug_port = ":2000"
|
||||
elif "jlink" in server_executable.lower():
|
||||
self._debug_port = ":2331"
|
||||
elif "qemu" in server_executable.lower():
|
||||
self._debug_port = ":1234"
|
||||
|
||||
return self._transport
|
||||
|
||||
|
Reference in New Issue
Block a user