1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 08:15:30 +03:00

Initial commit of SPI receiver code.

This commit is contained in:
Martin Budden 2016-09-14 01:44:43 +01:00
parent 9b9b16faed
commit 551bbe1d1a
33 changed files with 2971 additions and 32 deletions

View file

@ -134,3 +134,5 @@ static inline float constrainf(float amt, float low, float high)
else
return amt;
}
uint16_t crc16_ccitt(uint16_t crc, unsigned char a);