X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fio%2Fserial.cpp;h=5d335b6faa82e0226c043d14ba3a158e8a84d8ae;hp=74af366856cd6ceaf99866e00d977e2108c1803c;hb=d85465dd66a6fc80a9fb7868d1193a86abfe5b7c;hpb=f081ec1e48acba34298b46d9fab4a7bbcd9bee7d diff --git a/source/io/serial.cpp b/source/io/serial.cpp index 74af366..5d335b6 100644 --- a/source/io/serial.cpp +++ b/source/io/serial.cpp @@ -149,7 +149,8 @@ void set_stop_bits(DeviceState &state, unsigned bits) namespace Msp { namespace IO { -Serial::Serial(const string &descr) +Serial::Serial(const string &descr): + reader(handle, 1024) { string::size_type comma = descr.find(','); string port = descr.substr(0, comma); @@ -291,16 +292,7 @@ unsigned Serial::do_read(char *buf, unsigned size) if(size==0) return 0; - return sys_read(handle, buf, size); -} - -const Handle &Serial::get_event_handle() -{ -#ifdef WIN32 - throw logic_error("Serial port events not supported on win32 yet"); -#else - return handle; -#endif + return reader.read(buf, size); } } // namespace IO