From 9de66d463ba9ec1b71c8af7de2d99db9b6393705 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Sat, 15 Jun 2013 22:01:28 +0200 Subject: [PATCH] UART: add support for BeagleBone serial ports Thanks to Johan Henselmans! --- libnfc/buses/uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnfc/buses/uart.c b/libnfc/buses/uart.c index e4771e9..31eab88 100644 --- a/libnfc/buses/uart.c +++ b/libnfc/buses/uart.c @@ -61,7 +61,7 @@ const char *serial_ports_device_radix[] = { "tty.SLAB_USBtoUART", "tty.usbserial # elif defined (__FreeBSD__) || defined (__OpenBSD__) const char *serial_ports_device_radix[] = { "cuaU", "cuau", NULL }; # elif defined (__linux__) -const char *serial_ports_device_radix[] = { "ttyUSB", "ttyS", "ttyACM", "ttyAMA", NULL }; +const char *serial_ports_device_radix[] = { "ttyUSB", "ttyS", "ttyACM", "ttyAMA","ttyO", NULL }; # else # error "Can't determine serial string for your system" # endif