|
|
3 лет назад | |
|---|---|---|
| icons | 3 лет назад | |
| scenes | 3 лет назад | |
| .gitattributes | 3 лет назад | |
| README.md | 3 лет назад | |
| application.fam | 3 лет назад | |
| mag.c | 3 лет назад | |
| mag_10px.png | 3 лет назад | |
| mag_device.c | 3 лет назад | |
| mag_device.h | 3 лет назад | |
| mag_i.h | 3 лет назад |
Very early WIP of MagSpoof for the Flipper Zero. Currently rewriting from the ground up.
Interpolates work from Samy Kamkar's original MagSpoof project, dunaevai135's Flipper hackathon project, and the Flipper team's LF RFID app.
Courses of action to try in the event the LF coil signal is too weak:
Other misc things to investigate / build:
HF coil notes:
NFC reader field can be turned on / off with furi_hal_nfc_field_on(); and furi_hal_nfc_field_off(); respectively, as seen in nfc_scene_field.c (used for debug purposes). Initial tests with furi_hal_nfc_field_on(); are promising signal-wise, but the delay introduced by the wake/sleep initialization renders it impossible to toggle rapidly. At a lower level, that consists of furi_hal_nfc_exit_sleep(); and st25r3916TxRxOn(); to turn on, and st25r3916TxRxOff(); and furi_hal_nfc_start_sleep(); to turn off. May be worth trying directly (wake from sleep at setup, toggle on and off corresponding with bit direction, send to sleep on exit). Initial tests have been difficult to get work as some of the st25r3916 symbols are unresolved; need to figure out how to import and call it properly, or how to get another layer lower of control.