1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 11:44:53 +08:00

Everything builds, but haven't tested it on a serial device.

This commit is contained in:
William Woodall 2012-01-12 00:11:43 -06:00
parent 65fc8fb2a4
commit 2f36f14e1a
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ ENDIF(NOT DEFINED(LIBRARY_OUTPUT_PATH))
include_directories(${PROJECT_SOURCE_DIR}/include)
# Add default source files
set(SERIAL_SRCS src/serial.cc src/impl/unix.cc) # src/serial_listener.cc)
set(SERIAL_SRCS src/serial.cc src/impl/unix.cc src/serial_listener.cc)
# Add default header files
set(SERIAL_HEADERS include/serial/serial.h include/serial/serial_listener.h)

View File

@ -20,7 +20,7 @@ Serial::Serial (const string &port, int baudrate, long timeout,
bytesize_t bytesize, parity_t parity, stopbits_t stopbits,
flowcontrol_t flowcontrol)
{
pimpl = new Serial_pimpl(port, baudrate, timeout, bytesize, parity,
pimpl = new SerialImpl(port, baudrate, timeout, bytesize, parity,
stopbits, flowcontrol);
}