Renamed package from dm_imu_pkg to dm_imu across PKG-INFO, egg-info files, and directories. Updated CMakeLists.txt, __init__.py, and top_level.txt to reflect new structure. Bumped gradio version from <5.0 to <6.0 in dependencies. This refactoring improves naming consistency and streamlines the package layout for better maintainability.
10 lines
183 B
C++
10 lines
183 B
C++
#ifndef __BSP_CRC_H
|
|
#define __BSP_CRC_H
|
|
#include <iostream>
|
|
|
|
|
|
uint8_t Get_CRC8(uint8_t init_value ,uint8_t *ptr, uint8_t len);
|
|
uint16_t Get_CRC16(uint8_t *ptr, uint16_t len);
|
|
|
|
|
|
#endif |