1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-23 04:04:54 +08:00

Move stopbits_one_point_five to the end of the enum, so that it doesn't alias with stopbits_two.

This commit is contained in:
Mike Purvis 2013-10-06 01:24:42 -04:00
parent 0c7a1f59c3
commit 8f01d23249

View File

@ -74,8 +74,8 @@ typedef enum {
*/
typedef enum {
stopbits_one = 1,
stopbits_one_point_five,
stopbits_two = 2
stopbits_two = 2,
stopbits_one_point_five
} stopbits_t;
/*!