mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-06 13:11:18 -07:00
Minor fixes, added some functionality to send data, but still some way to go
This commit is contained in:
parent
5b760b6cac
commit
96e7a3a50b
2 changed files with 19 additions and 6 deletions
|
@ -218,7 +218,7 @@ int CmdRun(const char *Cmd)
|
|||
char buf[256];
|
||||
snprintf(buf, sizeof buf, "./scripts/%s", cmd_name);
|
||||
|
||||
printf("Executing file '%s'\n---------------------------\n" , cmd_name);
|
||||
printf("-----Executing file '%s'\n" , cmd_name);
|
||||
// run the Lua script
|
||||
|
||||
int error = luaL_loadfile(lua_state, buf);
|
||||
|
@ -241,6 +241,6 @@ int CmdRun(const char *Cmd)
|
|||
//luaL_dofile(lua_state, buf);
|
||||
// close the Lua state
|
||||
lua_close(lua_state);
|
||||
printf("-----------------Finished\n");
|
||||
printf("\n-----Finished\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue