mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 21:05:35 +03:00
Add constant option for A1 FrSky SPI (retry)
When using external XJT it annoyingly beeps when A1 drops below 3.7v (72 out of 255). I removed frsky_spi_use_external_adc and added frsky_spi_a1_source = VBAT, EXTADC, CONST. To prevent XJT from beeping ever set CONST and XJT will assume that the "reciever" is powered with 5v. I messed up previous PR #7305 branch so I decided that it's easier to open a new one. Closes #7297
This commit is contained in:
parent
d8e8d8374d
commit
c88db1a43a
6 changed files with 44 additions and 10 deletions
|
@ -79,6 +79,9 @@ typedef enum {
|
|||
#ifdef USE_MAX7456
|
||||
TABLE_MAX7456_CLOCK,
|
||||
#endif
|
||||
#ifdef USE_RX_FRSKY_SPI
|
||||
TABLE_RX_FRSKY_SPI_A1_SOURCE,
|
||||
#endif
|
||||
#ifdef USE_RANGEFINDER
|
||||
TABLE_RANGEFINDER_HARDWARE,
|
||||
#endif
|
||||
|
@ -116,7 +119,7 @@ typedef enum {
|
|||
TABLE_DYNAMIC_FILTER_RANGE,
|
||||
#endif // USE_GYRO_DATA_ANALYSE
|
||||
#ifdef USE_VTX_COMMON
|
||||
TABLE_VTX_LOW_POWER_DISARM,
|
||||
TABLE_VTX_LOW_POWER_DISARM,
|
||||
#endif
|
||||
TABLE_GYRO_HARDWARE,
|
||||
#ifdef USE_SDCARD
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue