Merge remote-tracking branch 'origin/master' into mmosca-mavlinkrc
[inav.git] / src / main / rx / frsky_crc.h
blob0a4dce38d6c9a5b6fead1cd901d92841a1b45ea8
1 /*
2 * This file is part of INAV.
4 * INAV is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * INAV is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with INAV. If not, see <http://www.gnu.org/licenses/>.
18 #include <stdbool.h>
19 #include <stdint.h>
21 uint8_t frskyCheckSum(uint8_t *data, uint8_t length);
22 bool frskyCheckSumIsGood(uint8_t *data, uint8_t length);
23 void frskyCheckSumStep(uint16_t *checksum, uint8_t byte); // Add byte to checksum
24 void frskyCheckSumFini(uint16_t *checksum); // Finalize checksum