FIX: the changes to uart.c timings seems to have fixed my problem with the pm3 device getting unresponsive.

CHG: "script run hard"  now iterates all sectors on the tag and output the table style like "hf mf chkkey" do.
This commit is contained in:
iceman1001
2016-11-22 01:58:11 +01:00
parent e108a48ac4
commit d1e197e9ec
5 changed files with 89 additions and 22 deletions

View File

@@ -71,7 +71,6 @@
*/
void permutekey(uint8_t key[8], uint8_t dest[8])
{
int i;
for(i = 0 ; i < 8 ; i++)
{
@@ -84,7 +83,6 @@ void permutekey(uint8_t key[8], uint8_t dest[8])
(((key[1] & (0x80 >> i)) >> (7-i)) << 1) |
(((key[0] & (0x80 >> i)) >> (7-i)) << 0);
}
return;
}
/**