From 7a510084b11ed0911305c8a802bef5bd7c2df8b1 Mon Sep 17 00:00:00 2001 From: amilcar Date: Mon, 3 Oct 2011 00:37:55 +0200 Subject: [PATCH] Fix serial port on windows --- libraries/AP_Common/Arduino.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Common/Arduino.mk b/libraries/AP_Common/Arduino.mk index 01001bc41e..2ba822df91 100644 --- a/libraries/AP_Common/Arduino.mk +++ b/libraries/AP_Common/Arduino.mk @@ -421,7 +421,7 @@ configure: @echo BOARD=mega >> $(SKETCHBOOK)/config.mk @echo \# The communication port used to communicate with the APM. >> $(SKETCHBOOK)/config.mk ifneq ($(findstring CYGWIN, $(SYSTYPE)),) - @echo PORT=/dev/com3 >> $(SKETCHBOOK)/config.mk + @echo PORT=com3 >> $(SKETCHBOOK)/config.mk else @echo PORT=/dev/ttyUSB0 >> $(SKETCHBOOK)/config.mk endif