Commit a1dc023c authored by Vowstar's avatar Vowstar
Browse files

Merge pull request #172 from sej7278/master

Fixes BIT_RATE typo's so 9600 isn't defined 3 times
parents b6d84fdc f6161230
...@@ -33,8 +33,8 @@ typedef enum { ...@@ -33,8 +33,8 @@ typedef enum {
} UartExistParity; } UartExistParity;
typedef enum { typedef enum {
BIT_RATE_9600 = 1200, BIT_RATE_1200 = 1200,
BIT_RATE_9600 = 2400, BIT_RATE_2400 = 2400,
BIT_RATE_4800 = 4800, BIT_RATE_4800 = 4800,
BIT_RATE_9600 = 9600, BIT_RATE_9600 = 9600,
BIT_RATE_19200 = 19200, BIT_RATE_19200 = 19200,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment