mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 01:35:41 +03:00
Refactored SPI RX led blink and bind plug functionality to rx_spi_common
This commit is contained in:
parent
4246f06529
commit
c88a5a3a22
21 changed files with 253 additions and 197 deletions
39
src/main/rx/rx_spi_common.h
Normal file
39
src/main/rx/rx_spi_common.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of Cleanflight and Betaflight.
|
||||
*
|
||||
* Cleanflight and Betaflight are free software. You can redistribute
|
||||
* this software and/or modify this software under the terms of the
|
||||
* GNU General Public License as published by the Free Software
|
||||
* Foundation, either version 3 of the License, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* Cleanflight and Betaflight are distributed in the hope that they
|
||||
* will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this software.
|
||||
*
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "rx/rx_spi.h"
|
||||
|
||||
#define INTERVAL_RX_LOSS_MS 1000
|
||||
#define INTERVAL_RX_BIND_MS 250
|
||||
#define RX_LOSS_COUNT 1000
|
||||
|
||||
void rxSpiCommonIOInit(const rxSpiConfig_t *rxSpiConfig);
|
||||
|
||||
void rxSpiLedOn(void);
|
||||
void rxSpiLedOff(void);
|
||||
void rxSpiLedToggle(void);
|
||||
void rxSpiLedBlink(timeMs_t blinkMs);
|
||||
void rxSpiLedBlinkRxLoss(rx_spi_received_e result);
|
||||
void rxSpiLedBlinkBind(void);
|
||||
|
||||
void rxSpiBind(void);
|
||||
bool rxSpiCheckBindRequested(bool reset);
|
Loading…
Add table
Add a link
Reference in a new issue