新增了教程和注释以及文档,增加了一键编译并打开ozone调试的脚本

This commit is contained in:
NeoZng
2023-02-14 11:13:32 +08:00
parent 8fa03012cf
commit 7c76852041
41 changed files with 201 additions and 45 deletions

View File

@@ -1,6 +1,6 @@
#include "crc_ref.h"
#include <stdio.h>
//裁判系统官方CRC校验
const uint8_t CRC8_INIT = 0xff;
const uint8_t CRC8_TAB[256] =

View File

@@ -1,6 +1,8 @@
#ifndef __CRC_H_
#define __CRC_H_
//裁判系统官方CRC校验,LUT和module/algorithms中的不同,后续需要统一实现crc,提供8/16/32的支持
#include <stdint.h>
#define TRUE 1