Changeset 20995
- Timestamp:
- 01/12/08 06:42:49 (8 months ago)
- Files:
-
- juggler/trunk/modules/vapor/vpr/IO/Port/SerialPort_t.h (modified) (2 diffs)
- juggler/trunk/modules/vapor/vpr/md/POSIX/IO/Port/SerialPortImplTermios.cpp (modified) (1 diff)
- juggler/trunk/modules/vapor/vpr/md/POSIX/IO/Port/SerialPortImplTermios.h (modified) (2 diffs)
- juggler/trunk/modules/vapor/vpr/md/WIN32/IO/Port/SerialPortImplWin32.cpp (modified) (1 diff)
- juggler/trunk/modules/vapor/vpr/md/WIN32/IO/Port/SerialPortImplWin32.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/vapor/vpr/IO/Port/SerialPort_t.h
r20974 r20995 772 772 * (except BREAKs). This is only active if input parity and framing error 773 773 * reporting is enabled (see setInputParityCheck() for more information). 774 * The mark is the three-byte sequence \377 \0 X where X is the byte775 * received in error. If bit stripping is enabled, a valid \377 byte is776 * passed as the two-byte sequence \377 \377.774 * The mark is the three-byte sequence 0377 0 X where X is the byte 775 * received in error. If bit stripping is enabled, a valid 0377 byte is 776 * passed as the two-byte sequence 0377 0377. 777 777 * 778 778 * @pre This serial port is open. … … 785 785 * 786 786 * @see setInputParityCheck 787 * 788 * @note 0377 == 0xFF == 255 787 789 */ 788 790 void setParityErrorMarking(bool flag) juggler/trunk/modules/vapor/vpr/md/POSIX/IO/Port/SerialPortImplTermios.cpp
r20974 r20995 426 426 // BREAKs). This is only active if input parity and framing error reporting 427 427 // is enabled (see getInputParityCheckState() for more information). The mark 428 // is the three-byte sequence \377 \0 X where X is the byte received in error.429 // If bit stripping is enabled, a valid \377 byte is passed as the two-byte430 // sequence \377 \377.428 // is the three-byte sequence 0377 0 X where X is the byte received in error. 429 // If bit stripping is enabled, a valid 0377 byte is passed as the two-byte 430 // sequence 0377 0377. 431 431 bool SerialPortImplTermios::getParityErrorMarkingState() const 432 432 { juggler/trunk/modules/vapor/vpr/md/POSIX/IO/Port/SerialPortImplTermios.h
r20974 r20995 723 723 * (except BREAKs). This is only active if input parity and framing error 724 724 * reporting is enabled (see setInputParityCheck() for more 725 * information). The mark is the three-byte sequence \377 \0 X where X725 * information). The mark is the three-byte sequence 0377 0 X where X 726 726 * is the byte received in error. If bit stripping is enabled, a valid 727 * \377 byte is passed as the two-byte sequence \377 \377.727 * 0377 byte is passed as the two-byte sequence 0377 0377. 728 728 * 729 729 * @pre This serial port is open. … … 736 736 * 737 737 * @see setInputParityCheck 738 * 739 * @note 0377 == 0xFF == 255 738 740 */ 739 741 void setParityErrorMarking(bool flag); juggler/trunk/modules/vapor/vpr/md/WIN32/IO/Port/SerialPortImplWin32.cpp
r20974 r20995 730 730 // BREAKs). This is only active if input parity and framing error reporting 731 731 // is enabled (see getInputParityCheckState() for more information). The mark 732 // is the three-byte sequence \377 \0 X where X is the byte received in error.733 // If bit stripping is enabled, a valid \377 byte is passed as the two-byte734 // sequence \377 \377.732 // is the three-byte sequence 0377 0 X where X is the byte received in error. 733 // If bit stripping is enabled, a valid 0377 byte is passed as the two-byte 734 // sequence 0377 0377. 735 735 bool SerialPortImplWin32::getParityErrorMarkingState() const 736 736 { juggler/trunk/modules/vapor/vpr/md/WIN32/IO/Port/SerialPortImplWin32.h
r20974 r20995 672 672 * BREAKs). This is only active if input parity and framing error 673 673 * reporting is enabled (see setInputParityCheck() for more 674 * information). The mark is the three-byte sequence \377 \0 X where X674 * information). The mark is the three-byte sequence 0377 0 X where X 675 675 * is the byte received in error. If bit stripping is enabled, a valid 676 * \377 byte is passed as the two-byte sequence \377 \377.676 * 0377 byte is passed as the two-byte sequence 0377 0377. 677 677 * 678 678 * @pre This serial port is open. … … 682 682 * 683 683 * @see setInputParityCheck 684 * 685 * @note 0377 == 0xFF == 255 684 686 */ 685 687 void setParityErrorMarking(bool flag);
