12345678910111213141516171819202122232425262728 |
- #include "stm32g4xx_hal.h"
- #include "menu_items.h"
- #include "FreeRTOS.h"
- #include "task.h"
- #include <string.h>
- #include <stdio.h>
- #define DBG if(1)
- extern bool update_flag;
- // Главное меню. Отрисовка.
- void draw_main(uint8_t sel)
- {
- static int counter = 0;
- update_flag = true;
-
- DBG printf("\033c");
- DBG printf("This is mani screen\r\n");
- DBG printf("Test counter: %u\r\n", counter++);
-
- }
- //
- void empty_func_bool(bool) {}
|