fix little endian vs big endian in the macros... again... but this time correct
[RRG-proxmark3.git] / client / src / cmdhflto.h
blob67179c2aeb313be4381ee5a69e8c27e5f9aa4e85
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2019 iceman
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // LTO-CM commands
9 //-----------------------------------------------------------------------------
11 #ifndef CMDHFLTO_H__
12 #define CMDHFLTO_H__
14 #include "common.h"
16 int infoLTO(bool verbose);
17 int dumpLTO(uint8_t *dump, bool verbose);
18 int restoreLTO(uint8_t *dump, bool verbose);
19 int rdblLTO(uint8_t st_blk, uint8_t end_blk, bool verbose);
20 int wrblLTO(uint8_t blk, uint8_t *data, bool verbose);
21 int CmdHFLTO(const char *Cmd);
23 #endif