When I try to create de SerialConfiguration Object I have this error:
[Error] Invalid argument: SerialConfigImpl::setParityCharImpl( )
I am under windows and I am using VC++ expres. I found this comment in the source file
enum Parity
{
//on Windows, PARITY_* conflicts with
//system macros, hence PAR_*
PAR_NONE = PARITY_NONE_IMPL,
PAR_ODD = PARITY_ODD_IMPL,
PAR_EVEN = PARITY_EVEN_IMPL,
PAR_MARK = PARITY_MARK_IMPL,
PAR_SPACE = PARITY_SPACE_IMPL
};
When I create the SerialConfig object I use only the bits rate parameter, for the other parameters I use the default values.
Thank you for helping me another time.





