Created "main.h"

Added an main.h file in the inc directory. Holds stuff from the empty
project I made before.
This commit is contained in:
Jake Goodwin 2025-01-27 19:20:38 -08:00
parent 3cf1f5a0c0
commit c2416e0715
1 changed files with 24 additions and 0 deletions

24
inc/main.h Normal file
View File

@ -0,0 +1,24 @@
/**
* @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 */