mirror of
https://github.com/IcedRooibos/py32f0-template.git
synced 2025-10-28 08:22:06 -07:00
29 lines
523 B
C
29 lines
523 B
C
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "py32f0xx_ll_bus.h"
|
|
#include "py32f0xx_ll_cortex.h"
|
|
#include "py32f0xx_ll_dma.h"
|
|
#include "py32f0xx_ll_exti.h"
|
|
#include "py32f0xx_ll_gpio.h"
|
|
#include "py32f0xx_ll_pwr.h"
|
|
#include "py32f0xx_ll_rcc.h"
|
|
#include "py32f0xx_ll_spi.h"
|
|
#include "py32f0xx_ll_system.h"
|
|
#include "py32f0xx_ll_tim.h"
|
|
#include "py32f0xx_ll_utils.h"
|
|
|
|
|
|
void APP_ErrorHandler(void);
|
|
uint8_t SPI_TxRxByte(uint8_t data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MAIN_H */
|