mirror of
https://github.com/IcedRooibos/py32f0-template.git
synced 2025-10-29 00:42:06 -07:00
30 lines
513 B
C
30 lines
513 B
C
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "py32f0xx_ll_rcc.h"
|
|
#include "py32f0xx_ll_bus.h"
|
|
#include "py32f0xx_ll_system.h"
|
|
#include "py32f0xx_ll_exti.h"
|
|
#include "py32f0xx_ll_cortex.h"
|
|
#include "py32f0xx_ll_utils.h"
|
|
#include "py32f0xx_ll_pwr.h"
|
|
#include "py32f0xx_ll_dma.h"
|
|
#include "py32f0xx_ll_gpio.h"
|
|
|
|
#if defined(USE_FULL_ASSERT)
|
|
#include "py32_assert.h"
|
|
#endif /* USE_FULL_ASSERT */
|
|
|
|
|
|
void APP_ErrorHandler(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MAIN_H */
|