diff options
Diffstat (limited to 'Libraries/Indicate/indicate_modes_task.h')
-rw-r--r-- | Libraries/Indicate/indicate_modes_task.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Libraries/Indicate/indicate_modes_task.h b/Libraries/Indicate/indicate_modes_task.h new file mode 100644 index 0000000..2a95fae --- /dev/null +++ b/Libraries/Indicate/indicate_modes_task.h @@ -0,0 +1,31 @@ +#ifndef INDICATE_MODES_TASK_INCLUDED +#define INDICATE_MODES_TASK_INCLUDED + +#include <stdint.h> +#include "nixie_driver_process.h" + +// Номера режимов индикации +typedef enum { + + INDIC_MODE_STANDART = 0, + INDIC_MODE_BLINK, + + MAX_INDIC_MODES + +} IndicModesNums_t; + + +// Структура для передачи сообщения индикации при настройке времени +// в режиме blink +typedef struct { + + DataToIndicate_t data; + uint8_t mask_byte; + +} IndicModesMsgBlink_t; + + +void IndicateModesInit ( void ); +void IndicateModes_Task ( void *pvParameters ); + +#endif //INDICATE_MODES_TASK_INCLUDED
\ No newline at end of file |