21 lines
527 B
C
21 lines
527 B
C
/**
|
|
******************************************************************************
|
|
* @文件名 : myInit.h
|
|
* @作 者 : 13552
|
|
* @brief : None
|
|
* @注意 : None
|
|
* @日 期 : 2024-04-26
|
|
******************************************************************************
|
|
*/
|
|
#ifndef BOOTLOADER_CORE_INC_MYINIT_H_
|
|
#define BOOTLOADER_CORE_INC_MYINIT_H_
|
|
|
|
#include "retarget.h"
|
|
#include "usart.h"
|
|
#include "ili9341.h"
|
|
|
|
|
|
void myInit();
|
|
|
|
#endif //BOOTLOADER_CORE_INC_MYINIT_H_
|