Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

15 rader
224 B

  1. #ifndef _LED_TASK_H
  2. #define _LED_TASK_H
  3. #include "stm32f4xx.h"
  4. typedef struct {
  5. void (*init)(void);
  6. void (*write_data)(uint8_t *data);
  7. uint8_t(*read_data)(void);
  8. } led_drive_t;
  9. extern led_drive_t led;
  10. #endif