Johannes Kutning 0d1b73e3e0 Initial commit
2023-10-31 07:47:27 +01:00

20 lines
259 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "task.h"
#include "crc_config.h"
extern crc_config CRC_CONFIG;
#define CRC32POLY 0xEDB88320 /* CRC-32 Polynom (Invers)*/
int task_crc_run( void * task );
#ifdef __cplusplus
}
#endif