uartapp.h
来自「Basic Application Loading over the Seria」· C头文件 代码 · 共 20 行
H
20 行
/* -------------------------------------------------------------------------- *
* uartapp.h - Header file for main function code *
* -------------------------------------------------------------------------- */
#ifndef _UARTAPP_H_
#define _UARTAPP_H_
//********************* Function Declarations **********************
// uboot has naked attribute since it's a dummy function, and also it is
// placed in aemif section (defined in linker script ubl.cmd) which is located in
// CS2 AEMIF memory space
void aemif_start( void ) __attribute__((naked,section(".aemif")));
unsigned int DDRTest(void);
int uartapp_main( void );
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?