[FL-1616] RFID: fix HID emulation (#610)

* Rfid: fixed HID emulation by adding zero pulse every 4 bits
* Rfid: HID emulation fixed with DSP based FSK oscillator.
This commit is contained in:
SG
2021-07-30 21:12:36 +10:00
committed by GitHub
parent e9e29e0e0c
commit fb80f9537f
5 changed files with 73 additions and 37 deletions

View File

@@ -31,7 +31,7 @@ void api_hal_rfid_pins_emulate() {
// pull rfid antenna from carrier side
hal_gpio_init(&gpio_rfid_carrier_out, GpioModeOutputPushPull, GpioSpeedLow, GpioPullNo);
hal_gpio_write(&gpio_rfid_carrier_out, true);
hal_gpio_write(&gpio_rfid_carrier_out, false);
}
void api_hal_rfid_pins_read() {