1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

GPS - Add satellite strength bargraphs to OLED display.

This commit is contained in:
Dominic Clifton 2014-12-13 21:58:54 +00:00
parent e8dbb77db5
commit d8b5f6c60c
6 changed files with 38 additions and 12 deletions

View file

@ -17,13 +17,14 @@
#pragma once
// Since serial ports can be used for any function these buffer sizes probably need normalising.
// Since serial ports can be used for any function these buffer sizes should be equal
// The two largest things that need to be sent are: 1, MSP responses, 2, UBLOX SVINFO packet.
#define UART1_RX_BUFFER_SIZE 256
#define UART1_TX_BUFFER_SIZE 192
#define UART1_TX_BUFFER_SIZE 256
#define UART2_RX_BUFFER_SIZE 256
#define UART2_TX_BUFFER_SIZE 192
#define UART2_TX_BUFFER_SIZE 256
#define UART3_RX_BUFFER_SIZE 256
#define UART3_TX_BUFFER_SIZE 192
#define UART3_TX_BUFFER_SIZE 256
typedef struct {
serialPort_t port;