CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/libraries/AP_ADSB/sagetech-sdk/calcChecksum.c
Views: 1799
1
/**
2
* @copyright Copyright (c) 2021 Sagetech, Inc. All rights reserved.
3
*
4
* @file calcChecksum.c
5
* @author Jacob.Garrison
6
*
7
* @date Mar 2, 2021
8
*
9
*/
10
11
#include "sgUtil.h"
12
13
/*
14
* Documented in the header file
15
*/
16
uint8_t calcChecksum(uint8_t *buffer, uint8_t len)
17
{
18
uint8_t sum = 0x00;
19
20
// Add all bytes excluding checksum
21
for (uint8_t i = 0; i < len - 1; ++i)
22
{
23
sum += buffer[i];
24
}
25
26
return sum;
27
}
28
29