25 lines
308 B
C
25 lines
308 B
C
|
/**
|
||
|
* @file: main.h
|
||
|
* @brief: Header for main.c file.
|
||
|
*This file contains the common defines of the application.
|
||
|
*/
|
||
|
|
||
|
#ifndef __MAIN_H
|
||
|
#define __MAIN_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "stm32g0xx_hal.h"
|
||
|
|
||
|
|
||
|
void Error_Handler(void);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __MAIN_H */
|