RAK815 WIP - use 115200 for serial to USB on this board, best it can do

1.2-legacy
geeksville 2020-07-10 13:24:00 -07:00
rodzic feb9992d7d
commit 6fbf6b2986
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -189,6 +189,8 @@ board = rak815
debug_tool = jlink
upload_protocol = jlink
monitor_port = /dev/ttyUSB0
; this board's serial chip can only run at 115200, not faster
monitor_speed = 115200
# For experimenting with RAM sizes
# board_build.ldscript = linker/nrf52840_s140_sim832.ld

Wyświetl plik

@ -297,7 +297,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// DEBUG
// -----------------------------------------------------------------------------
#ifdef CONSOLE_MAX_BAUD
#define SERIAL_BAUD CONSOLE_MAX_BAUD
#else
#define SERIAL_BAUD 921600 // Serial debug baud rate
#endif
#include "SerialConsole.h"