mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-06 13:11:18 -07:00
Added a lua bit manipulation library, added Lua-api to iso 15693 crc-calculation
This commit is contained in:
parent
da9d456e9f
commit
77cd612f15
7 changed files with 249 additions and 3 deletions
|
@ -25,7 +25,7 @@
|
|||
#include "cmdscript.h"
|
||||
#include "cmdhfmf.h"
|
||||
#include "pm3_binlib.h"
|
||||
|
||||
#include "pm3_bitlib.h"
|
||||
#include <lua.h>
|
||||
#include <lualib.h>
|
||||
#include <lauxlib.h>
|
||||
|
@ -133,6 +133,8 @@ int CmdRun(const char *Cmd)
|
|||
//Add the 'bin' library
|
||||
set_bin_library(lua_state);
|
||||
|
||||
//Add the 'bit' library
|
||||
set_bit_library(lua_state);
|
||||
|
||||
char script_name[128] = {0};
|
||||
char arguments[256] = {0};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue