📄 common.h
字号:
//***************************************************************
// ARM BOOT ROUTE VER1.0@0x0C000000 for 44B0X release
// bjwork2007@gmail.com
// chenjun @ 2005-6-10
//***************************************************************
#ifndef _COMMON_H_
#define _COMMON_H_
#define EXT_OSC_CLK 12000000
#define BaseBaud 115200
#define SERIAL_BAUD (BaseBaud)
#define MAX_CMD_LEN 128
#define MAX_ARGS (MAX_CMD_LEN/4)
#define NULL 0
#define True 1
#define False 0
#define prompt() puts("[NXP_ARM.Bios /]# ")
void Delay(unsigned int time);
void MemoryCopy(unsigned int b1add,unsigned int b2add,unsigned int bcsize);
void Memoryfill(unsigned int ramstartadd,unsigned int size,unsigned int tempvalue,unsigned char org);
unsigned char MemoryBlockCheck(unsigned int b1add,unsigned int b2add,unsigned int bcsize);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -