21 lines
377 B
C
21 lines
377 B
C
#ifndef APP_H
|
|
#define APP_H
|
|
#include "stm32f4xx.h"
|
|
#include "general_config.h"
|
|
#include "string.h"
|
|
#include "main.h"
|
|
|
|
|
|
#define BinPerFrameSize 512
|
|
#define rx2_buffsize 700
|
|
#define resent_time 3 //s
|
|
|
|
void usart2_config(void);
|
|
void timer5_init(uint16_t arr,uint16_t psc);
|
|
void upgrade_menu(void);
|
|
void execute_app(void);
|
|
void boot_ReceiveHdl(void);
|
|
void WIFI_INIT(void);
|
|
#endif
|
|
|