cmd_processing.h

来自「bdm源代码. coldfire处理器用」· C头文件 代码 · 共 20 行

H
20
字号
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 + =
减小字号Ctrl + -
显示快捷键?