Fix the missing mode calls.

Start cleaning up the debug output a little
pull/29/head
Karl Palsson 2011-10-07 19:36:38 +00:00
rodzic 7151f2cb0f
commit baf9829fd2
4 zmienionych plików z 22 dodań i 31 usunięć

Wyświetl plik

@ -364,7 +364,21 @@ void stlink_step(stlink_t *sl) {
int stlink_current_mode(stlink_t *sl) { int stlink_current_mode(stlink_t *sl) {
D(sl, "\n*** stlink_current_mode ***\n"); D(sl, "\n*** stlink_current_mode ***\n");
sl->backend->current_mode(sl); int mode = sl->backend->current_mode(sl);
stlink_print_data(sl);
switch (mode) {
case STLINK_DEV_DFU_MODE:
DD(sl, "stlink mode: dfu\n");
return mode;
case STLINK_DEV_DEBUG_MODE:
DD(sl, "stlink mode: debug (jtag or swd)\n");
return mode;
case STLINK_DEV_MASS_MODE:
DD(sl, "stlink mode: mass\n");
return mode;
}
DD(sl, "stlink mode: unknown!\n");
return STLINK_DEV_UNKNOWN_MODE;
} }

Wyświetl plik

@ -291,26 +291,6 @@ void stlink_parse_version(stlink_t *stl) {
} }
int stlink_mode(stlink_t *stl) {
if (stl->q_len <= 0)
return STLINK_DEV_UNKNOWN_MODE;
stlink_print_data(stl);
switch (stl->q_buf[0]) {
case STLINK_DEV_DFU_MODE:
DD(stl, "stlink mode: dfu\n");
return STLINK_DEV_DFU_MODE;
case STLINK_DEV_DEBUG_MODE:
DD(stl, "stlink mode: debug (jtag or swd)\n");
return STLINK_DEV_DEBUG_MODE;
case STLINK_DEV_MASS_MODE:
DD(stl, "stlink mode: mass\n");
return STLINK_DEV_MASS_MODE;
}
return STLINK_DEV_UNKNOWN_MODE;
}
void stlink_stat(stlink_t *stl, char *txt) { void stlink_stat(stlink_t *stl, char *txt) {
if (stl->q_len <= 0) if (stl->q_len <= 0)
return; return;
@ -346,13 +326,12 @@ void _stlink_sg_version(stlink_t *stl) {
int _stlink_sg_current_mode(stlink_t *stl) { int _stlink_sg_current_mode(stlink_t *stl) {
struct stlink_libsg *sl = stl->backend_data; struct stlink_libsg *sl = stl->backend_data;
D(stl, "\n*** stlink_current_mode ***\n");
clear_cdb(sl); clear_cdb(sl);
sl->cdb_cmd_blk[0] = STLINK_GET_CURRENT_MODE; sl->cdb_cmd_blk[0] = STLINK_GET_CURRENT_MODE;
stl->q_len = 2; stl->q_len = 2;
sl->q_addr = 0; sl->q_addr = 0;
stlink_q(stl); stlink_q(stl);
return stlink_mode(stl); return stl->q_buf[0];
} }
// Exit the mass mode and enter the swd debug mode. // Exit the mass mode and enter the swd debug mode.
@ -788,7 +767,8 @@ stlink_backend_t _stlink_sg_backend = {
_stlink_sg_read_all_regs, _stlink_sg_read_all_regs,
_stlink_sg_read_reg, _stlink_sg_read_reg,
_stlink_sg_write_reg, _stlink_sg_write_reg,
_stlink_sg_step _stlink_sg_step,
_stlink_sg_current_mode
}; };
stlink_t* stlink_open(const char *dev_name, const int verbose) { stlink_t* stlink_open(const char *dev_name, const int verbose) {

Wyświetl plik

@ -199,12 +199,7 @@ int _stlink_usb_current_mode(stlink_t * sl) {
/* mode = (int)read_uint16(buf, 0); */ /* mode = (int)read_uint16(buf, 0); */
mode = (int) buf[0]; mode = (int) buf[0];
DD(sl, "mode == 0x%x\n", mode);
#if 1 /* DEBUG */
printf("mode == 0x%x\n", mode);
#endif /* DEBUG */
return mode; return mode;
} }
@ -413,7 +408,8 @@ stlink_backend_t _stlink_usb_backend = {
_stlink_usb_read_all_regs, _stlink_usb_read_all_regs,
_stlink_usb_read_reg, _stlink_usb_read_reg,
_stlink_usb_write_reg, _stlink_usb_write_reg,
_stlink_usb_step _stlink_usb_step,
_stlink_usb_current_mode
}; };

Wyświetl plik

@ -47,6 +47,7 @@ int main(int ac, char** av) {
printf("-- step\n"); printf("-- step\n");
stlink_step(sl); stlink_step(sl);
printf("Press enter to go to run mode and exit the debugger\n");
getchar(); getchar();
printf("-- run\n"); printf("-- run\n");