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.h 236B

12345678910111213141516
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #include <inttypes.h>
  6. int task_bind( void * task, uint32_t binding );
  7. int task_run( void * task );
  8. uint32_t task_get_cycle_count( const void * task );
  9. #ifdef __cplusplus
  10. }
  11. #endif