Merge pull request #1529 from zabszk/master

Fixed ledcontrol in SimulateTagLowFrequencyEx
This commit is contained in:
Iceman
2021-11-18 07:28:49 +01:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
- Fixed `hf mfdes` - fix buffer overflow (@AxisRay)
- Changed `hf mfdes` - detect LRP mode and info updates (@merlokk)
- Fixed `hf mfdes` - increase response buffer length (@merlokk)
- Fixed `SimulateTagLowFrequencyEx` ignoring the `ledcontrol` argument (@zabszk)
## [crimson.4.14434][2021-09-18]
- Fixed `hf mf staticnested` - flashmem / non loop now works (@horrordash)

View File

@@ -901,7 +901,7 @@ void SimulateTagLowFrequencyEx(int period, int gap, bool ledcontrol, int numcycl
OUT:
StopTicks();
FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF);
LED_D_OFF();
if (ledcontrol) LED_D_OFF();
}
void SimulateTagLowFrequency(int period, int gap, bool ledcontrol) {