20 lines
259 B
C
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
|
|
|