diff --git a/software/console/Makefile b/software/console/Makefile index 254481de6..af1f2672c 100644 --- a/software/console/Makefile +++ b/software/console/Makefile @@ -1,7 +1,7 @@ ROOT_DIR:=../.. include $(ROOT_DIR)/config.mk -SERIAL:=/dev/ttyUSB0 +SERIAL:=/dev/usb-uart TEST_BENCH:=0 INCLUDE+=-I$(UART_DIR)/software -I$(FIRM_DIR) diff --git a/software/console/console b/software/console/console index 5f4654dd3..6fc799884 100755 --- a/software/console/console +++ b/software/console/console @@ -166,7 +166,7 @@ def init_serial(): # configure the serial connections (the parameters differs on the device connected to) ser = serial.Serial() - ser.port = "/dev/ttyUSB0" + ser.port = "/dev/usb-uart" ser.baudrate = 115200 ser.bytesize = serial.EIGHTBITS #number of bits per bytes ser.parity = serial.PARITY_NONE #set parity check: no parity