mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 21:03:23 -07:00
Fixed a typo in command.cpp, moved Changelog to CHANGES.TXT for better coherence.
This commit is contained in:
parent
a60612db65
commit
974ba9a205
3 changed files with 14 additions and 5 deletions
|
@ -1,4 +0,0 @@
|
||||||
2009-04-09 : Initial SVN commit plus:
|
|
||||||
- Added indala demodulation algorithm - full documentation on https://www.lafargue.name/proxmark3/
|
|
||||||
- losim should also be able to simulate an indala tag after indalademod
|
|
||||||
|
|
|
@ -1,3 +1,16 @@
|
||||||
|
################
|
||||||
|
## 2009/04/09 ##
|
||||||
|
################
|
||||||
|
|
||||||
|
Initial SVN commit plus:
|
||||||
|
- Added indala demodulation algorithm - full documentation on https://www.lafargue.name/proxmark3/
|
||||||
|
- losim should also be able to simulate an indala tag after indalademod
|
||||||
|
- offline mode for the proxmark3 CLI: if no Proxmark is detected, it will
|
||||||
|
still go on, but all commands requiring USB will fail (obviously).
|
||||||
|
A proper implementation would require only enabling offline commands
|
||||||
|
in this mode.
|
||||||
|
|
||||||
|
|
||||||
################
|
################
|
||||||
## 2009/03/28 ##
|
## 2009/03/28 ##
|
||||||
################
|
################
|
||||||
|
|
|
@ -1655,7 +1655,7 @@ static void Cmdmanchesterdemod(char *str) {
|
||||||
} else if ((BitStream[bitidx2] == 1) && (BitStream[bitidx2+1] == 0)) {
|
} else if ((BitStream[bitidx2] == 1) && (BitStream[bitidx2+1] == 0)) {
|
||||||
BitStream2[bitidx2/2] = 0;
|
BitStream2[bitidx2/2] = 0;
|
||||||
} else {
|
} else {
|
||||||
// We cannot end up in this stage, this means we are unsynchronized,
|
// We cannot end up in this state, this means we are unsynchronized,
|
||||||
// move up 1 bit:
|
// move up 1 bit:
|
||||||
bitidx2++;
|
bitidx2++;
|
||||||
PrintToScrollback("Unsynchronized, resync...");
|
PrintToScrollback("Unsynchronized, resync...");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue