Removing SX1280 specific target (#11966)
[betaflight.git] / src / main / rx / msp.c
blobadf3ad5537e1602b79fd419b4c37032772cb772c
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 #include <stdbool.h>
22 #include <stdint.h>
24 #include "platform.h"
26 #ifdef USE_RX_MSP
28 #include "common/utils.h"
30 #include "drivers/io.h"
31 #include "pg/rx.h"
32 #include "rx/rx.h"
33 #include "rx/msp.h"
36 static uint16_t mspFrame[MAX_SUPPORTED_RC_CHANNEL_COUNT];
37 static bool rxMspFrameDone = false;
39 float rxMspReadRawRC(const rxRuntimeState_t *rxRuntimeState, uint8_t chan)
41 UNUSED(rxRuntimeState);
42 return mspFrame[chan];
46 * Called from MSP command handler - mspFcProcessCommand
48 void rxMspFrameReceive(uint16_t *frame, int channelCount)
50 for (int i = 0; i < channelCount; i++) {
51 mspFrame[i] = frame[i];
54 // Any channels not provided will be reset to zero
55 for (int i = channelCount; i < MAX_SUPPORTED_RC_CHANNEL_COUNT; i++) {
56 mspFrame[i] = 0;
59 rxMspFrameDone = true;
62 static uint8_t rxMspFrameStatus(rxRuntimeState_t *rxRuntimeState)
64 UNUSED(rxRuntimeState);
66 if (!rxMspFrameDone) {
67 return RX_FRAME_PENDING;
70 rxMspFrameDone = false;
71 return RX_FRAME_COMPLETE;
74 void rxMspInit(const rxConfig_t *rxConfig, rxRuntimeState_t *rxRuntimeState)
76 UNUSED(rxConfig);
78 rxRuntimeState->channelCount = MAX_SUPPORTED_RC_CHANNEL_COUNT;
79 rxRuntimeState->rcReadRawFn = rxMspReadRawRC;
80 rxRuntimeState->rcFrameStatusFn = rxMspFrameStatus;
82 #endif