?? board.h
字號:
#ifndef __BOARD_H
#define __BOARD_H
#include "../inc/def.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void __ENTRY(void);
void EnableInt(void);
void CacheDisable(void);
void CacheEnable(void);
void CacheFlush(void);
void PortInit(void);
void SystemClockInit(void);
U32 GetCpuClock(void);
U32 GetMasterClock(void);
void SerialTxChar(char);
void SerialTxString(char *);
int SerialRxReady(void);
char SerialRxKey(void);
void SerialChgBaud(U32);
U16 SerialSwitch(U16);
int kbhit(void);
int getkey(void);
void putch(char ch);
void puts(char *str);
char getch(void);
void Delay(U32 time);
void EnableIrq(int);
void DisableIrq(int);
void MemCfgInit(void);
void BoardInitStart(void);
void BoardInitEnd(void);
void printf(char *f, ...);
void memcpy(void *s1, const void *s2, int n);
extern int strlen(const char *s);
#ifdef __cplusplus
}
#endif
#endif /*__BOARD_H*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -