38 lines
602 B
C
38 lines
602 B
C
|
//
|
||
|
// Created by ZK on 2023/3/10.
|
||
|
//
|
||
|
|
||
|
#ifndef BOOOOMFOC_STSPIN32G4_EVB_APP_MAIN_H
|
||
|
#define BOOOOMFOC_STSPIN32G4_EVB_APP_MAIN_H
|
||
|
|
||
|
#include "main.h"
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
|
||
|
|
||
|
#include "adc.h"
|
||
|
#include "dma.h"
|
||
|
#include "i2c.h"
|
||
|
#include "opamp.h"
|
||
|
#include "spi.h"
|
||
|
#include "tim.h"
|
||
|
#include "usb_device.h"
|
||
|
#include "gpio.h"
|
||
|
|
||
|
#include "usbd_cdc_if.h"
|
||
|
//#include "arm_math.h"
|
||
|
#include "Utils/arm_math.h"
|
||
|
|
||
|
#include "Communication.h"
|
||
|
|
||
|
|
||
|
static __IO uint16_t adc1_RegularBuf[10];
|
||
|
|
||
|
void APP_Init();
|
||
|
void APP_Main();
|
||
|
void APP_Task();
|
||
|
|
||
|
#endif //BOOOOMFOC_STSPIN32G4_EVB_APP_MAIN_H
|