Skip to content

Commit

Permalink
Merge pull request #23 from ezod/4800baud
Browse files Browse the repository at this point in the history
Add 4800 baud rate
  • Loading branch information
ezod authored Oct 6, 2023
2 parents a27b41c + fb7946f commit ec77166
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gps_uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

#define RX_BUF_SIZE 1024

static const int gps_baudrates[5] = {9600, 19200, 38400, 57600, 115200};
static int current_gps_baudrate = 0;
static const int gps_baudrates[6] = {4800, 9600, 19200, 38400, 57600, 115200};
static int current_gps_baudrate = 1;

typedef struct {
bool valid;
Expand Down

0 comments on commit ec77166

Please sign in to comment.