Loading...
Searching...
No Matches
dynamixel_crc.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2017 Inria
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
18
19#include <stdint.h>
20#include <stdlib.h>
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26uint16_t dynamixel_crc_update(uint16_t crc_accum, const uint8_t *buffer, size_t size);
27
28#ifdef __cplusplus
29}
30#endif
31