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.c 460B

1234567891011121314151617181920
  1. #include "task_crc.h"
  2. #include "data_channel.h"
  3. #include "crc_config.h"
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <system.h>
  7. crc_config CRC_CONFIG = {
  8. .base = { .name = "crc",
  9. .binding = BINDING_SW,
  10. .software = task_crc_run,
  11. .configure = NULL,
  12. .hardware = HARDWARE_TASK_6_BASE,
  13. .sources = { DATA_CHANNEL_5_BASE },
  14. .sink = DATA_CHANNEL_6_BASE,
  15. .cycle_count = 0 },
  16. .start = 0x00000000 };