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.
|
- #ifndef _LED_TASK_H
- #define _LED_TASK_H
-
- #include "stm32f4xx.h"
-
- typedef struct {
- void (*init)(void);
- void (*write_data)(uint8_t *data);
- uint8_t(*read_data)(void);
- } led_drive_t;
- extern led_drive_t led;
-
- #endif
|