Merge pull request #6382 from mikeller/fix_smartport_delay
[betaflight.git] / src / main / rx / cc2500_frsky_shared.h
blobda6700da437e61a39b81e98cf03d181687e4ec06
1 /*
2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
8 * any later version.
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
21 #pragma once
23 #include "rx/rx_spi.h"
25 #define MAX_MISSING_PKT 100
27 #define DEBUG_DATA_ERROR_COUNT 0
28 #define DEBUG_DATA_MISSING_PACKETS 1
29 #define DEBUG_DATA_BAD_FRAME 2
32 #define SYNC_DELAY_MAX 9000
34 #define MAX_MISSING_PKT 100
36 enum {
37 STATE_INIT = 0,
38 STATE_BIND,
39 STATE_BIND_TUNING,
40 STATE_BIND_BINDING1,
41 STATE_BIND_BINDING2,
42 STATE_BIND_COMPLETE,
43 STATE_STARTING,
44 STATE_UPDATE,
45 STATE_DATA,
46 STATE_TELEMETRY,
47 STATE_RESUME,
50 extern uint8_t listLength;
51 extern uint32_t missingPackets;
52 extern timeDelta_t timeoutUs;
53 extern int16_t rssiDbm;
55 extern IO_t gdoPin;
57 void setRssiDbm(uint8_t value);
59 void TxEnable(void);
60 void TxDisable(void);
62 void LedOn(void);
63 void LedOff(void);
65 void switchAntennae(void);
67 void initialiseData(uint8_t adr);
69 bool checkBindRequested(bool reset);
71 void nextChannel(uint8_t skip);