?? cmd_processing.h
字號:
unsigned char command_exec(void);
typedef enum {
CF_BDM=TARGET_TYPE_CF_BDM,
JTAG=TARGET_TYPE_JTAG
} target_type_e;
typedef enum {
NO_RESET_ACTIVITY=0,
RESET_DETECTED=1
} reset_e;
typedef struct {
unsigned char target_type:3; /* target_type_e */
unsigned char reset:1; /* reset_e */
} cable_status_t;
#pragma DATA_SEG Z_RAM
extern cable_status_t near cable_status;
#pragma DATA_SEG DEFAULT
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -