mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 03:23:36 +08:00
fixed: "lf t55 config d" won't accept modulations with length > 4 chars (FSK2a, etc.)
This commit is contained in:
parent
1e48d34612
commit
910c86a30f
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ void printT5xxHeader(uint8_t page){
|
|||
int CmdT55xxSetConfig(const char *Cmd) {
|
||||
|
||||
uint8_t offset = 0;
|
||||
char modulation[5] = {0x00};
|
||||
char modulation[6] = {0x00};
|
||||
char tmp = 0x00;
|
||||
uint8_t bitRate = 0;
|
||||
uint8_t rates[9] = {8,16,32,40,50,64,100,128,0};
|
||||
|
|
Loading…
Add table
Reference in a new issue