STM32N6 NPU Deployment — Politecnico di Milano  1.0
Documentation for Neural Network Deployment on STM32N6 NPU - Politecnico di Milano 2024-2025
main.h
Go to the documentation of this file.
1 
19 /* Define to prevent recursive inclusion -------------------------------------*/
20 #ifndef MAIN_H
21 #define MAIN_H
22 
23 /* Includes ------------------------------------------------------------------*/
24 #include "stm32n6xx_hal.h"
25 #include "stm32_lcd.h"
26 
27 /* Exported types ------------------------------------------------------------*/
28 /* Exported constants --------------------------------------------------------*/
29 /* Exported macro ------------------------------------------------------------*/
30 #define CIRCLE_RADIUS 5
31 /* Must be odd */
32 #define BINDING_WIDTH 3
33 #define COLOR_HEAD UTIL_LCD_COLOR_GREEN
34 #define COLOR_ARMS UTIL_LCD_COLOR_BLUE
35 #define COLOR_TRUNK UTIL_LCD_COLOR_MAGENTA
36 #define COLOR_LEGS UTIL_LCD_COLOR_ORANGE
37 #define COLOR_BOX UTIL_LCD_COLOR_RED
38 
39 /* Exported functions ------------------------------------------------------- */
40 
41 #endif /* MAIN_H */
42