mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
add some capabilities
This commit is contained in:
parent
4ff7514232
commit
d7291aac29
2 changed files with 7 additions and 0 deletions
|
@ -175,6 +175,12 @@ bool IfPm3Lcd(void) {
|
|||
return g_pm3_capabilities.compiled_with_lcd;
|
||||
}
|
||||
|
||||
bool IfPm3Zx8211(void) {
|
||||
if (!IfPm3Present())
|
||||
return false;
|
||||
return g_pm3_capabilities.compiled_with_zx8211;
|
||||
}
|
||||
|
||||
|
||||
void CmdsHelp(const command_t Commands[]) {
|
||||
if (Commands[0].Name == NULL) return;
|
||||
|
|
|
@ -47,6 +47,7 @@ bool IfPm3Legicrf(void);
|
|||
bool IfPm3Iclass(void);
|
||||
bool IfPm3NfcBarcode(void);
|
||||
bool IfPm3Lcd(void);
|
||||
bool IfPm3Zx8211(void);
|
||||
|
||||
// Print help for each command in the command array
|
||||
void CmdsHelp(const command_t Commands[]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue