11 lines
184 B
C
11 lines
184 B
C
|
#ifndef __MAIN_H
|
||
|
#define __MAIN_H
|
||
|
|
||
|
#include "stm32h7xx_hal.h"
|
||
|
#include "stm32h7xx.h"
|
||
|
|
||
|
static void SystemClock_Config(void);
|
||
|
static uint8_t KEY2_LongPress(void);
|
||
|
#endif /* __MAIN_H */
|
||
|
|