Studentenversion des ESY6/A Praktikums "signal_processing".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

task_crc.h 259B

12345678910111213141516171819
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #include "task.h"
  6. #include "crc_config.h"
  7. extern crc_config CRC_CONFIG;
  8. #define CRC32POLY 0xEDB88320 /* CRC-32 Polynom (Invers)*/
  9. int task_crc_run( void * task );
  10. #ifdef __cplusplus
  11. }
  12. #endif