16 lines
351 B
C
16 lines
351 B
C
#include <stdio.h>
|
|
|
|
#include "select_probe.h"
|
|
|
|
const char cmd_select_probe_help[] = "Bla bla.";
|
|
|
|
int cmd_select_probe(jtag_core *jc, int argc, char *argv[]) {
|
|
int error = 0;
|
|
|
|
// error = jtagcore_select_and_open_probe(jc, probe_id);
|
|
if (error < 0) {
|
|
printf("Impossible to open the selected probe.\n");
|
|
return error;
|
|
}
|
|
|
|
} |