text
[RRG-proxmark3.git] / armsrc / em4x50.h
blobd47579dcc7667cf23dd0effaf207b0c3be2a6e05
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2020 tharexde
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 // Low frequency EM4x50 commands
9 //-----------------------------------------------------------------------------
11 #ifndef EM4X50_H
12 #define EM4X50_H
14 #include "../include/em4x50.h"
16 void em4x50_setup_read(void);
17 int standard_read(int *now, uint32_t *words);
19 void em4x50_setup_sim(void);
20 void em4x50_handle_commands(int *command, uint32_t *tag);
22 void em4x50_info(em4x50_data_t *etd);
23 void em4x50_write(em4x50_data_t *etd);
24 void em4x50_writepwd(em4x50_data_t *etd);
25 void em4x50_read(em4x50_data_t *etd);
26 void em4x50_brute(em4x50_data_t *etd);
27 void em4x50_login(uint32_t *password);
28 void em4x50_sim(uint32_t *password);
29 void em4x50_reader(void);
30 void em4x50_chk(uint8_t *filename);
32 #endif /* EM4X50_H */