app dir changed and src dir removed
This commit is contained in:
16
bs/cmds/select_probe.c
Normal file
16
bs/cmds/select_probe.c
Normal file
@@ -0,0 +1,16 @@
|
||||
#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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user