mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 22:35:23 +03:00
Merge pull request #7356 from phobos-/rx-spi-msp-order-fix
Fixed order of rx spi protocols in rx_spi_protocol_e
This commit is contained in:
commit
40522dc3f3
2 changed files with 3 additions and 3 deletions
|
@ -228,12 +228,12 @@ static const char * const lookupTableRxSpi[] = {
|
|||
"INAV",
|
||||
"FRSKY_D",
|
||||
"FRSKY_X",
|
||||
"FRSKY_X_LBT",
|
||||
"FLYSKY",
|
||||
"FLYSKY_2A",
|
||||
"KN",
|
||||
"SFHSS",
|
||||
"SPEKTRUM"
|
||||
"SPEKTRUM",
|
||||
"FRSKY_X_LBT"
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
|
@ -36,12 +36,12 @@ typedef enum {
|
|||
RX_SPI_NRF24_INAV,
|
||||
RX_SPI_FRSKY_D,
|
||||
RX_SPI_FRSKY_X,
|
||||
RX_SPI_FRSKY_X_LBT,
|
||||
RX_SPI_A7105_FLYSKY,
|
||||
RX_SPI_A7105_FLYSKY_2A,
|
||||
RX_SPI_NRF24_KN,
|
||||
RX_SPI_SFHSS,
|
||||
RX_SPI_CYRF6936_DSM,
|
||||
RX_SPI_FRSKY_X_LBT,
|
||||
RX_SPI_PROTOCOL_COUNT
|
||||
} rx_spi_protocol_e;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue