mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Add special debug port for simavr tool
This commit is contained in:
@ -117,6 +117,8 @@ class DebugServer(BaseProcess):
|
|||||||
self._debug_port = ":2331"
|
self._debug_port = ":2331"
|
||||||
elif "qemu" in server_executable.lower():
|
elif "qemu" in server_executable.lower():
|
||||||
self._debug_port = ":1234"
|
self._debug_port = ":1234"
|
||||||
|
elif "simavr" in server_executable.lower():
|
||||||
|
self._debug_port = ":1234"
|
||||||
|
|
||||||
yield self._wait_until_ready()
|
yield self._wait_until_ready()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user