Skip to content

Commit

Permalink
Version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisRo committed Aug 28, 2022
1 parent 82f2c89 commit f366ea4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion config.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "bsp/board.h"

#define FWVER_MAJOR (0)
#define FWVER_MINOR (2)
#define FWVER_MINOR (3)

/*
* RP2040's can generally be over-clocked up to 260mhz without any problems. This
Expand Down Expand Up @@ -146,6 +146,15 @@ typedef enum
#define LOGGER_UART_TX_PIN (0)
#endif

/*
* NOTE: Since by default we are running the logger uart rate really fast (1.5M),
* we are using 2 stop bits. If you lower the baudrate, you may want to decrease
* this to 1 for slightly faster logging.
*/
#ifndef LOGGER_UART_STOPBITS
#define LOGGER_UART_STOPBITS (2)
#endif

/*
* NOTE: This may be to high for some serial ICs!
* I use a CH340G for logging and 1.5M works better than 921600.
Expand Down

0 comments on commit f366ea4

Please sign in to comment.