rework NfcA and simplify a bit

digital_sequence_bake added for testing purpose
This commit is contained in:
g3gg0
2022-11-22 00:34:09 +01:00
parent 60b2c5cf67
commit eb98c7b246
3 changed files with 99 additions and 36 deletions

View File

@@ -6,8 +6,9 @@
#include <lib/digital_signal/digital_signal.h>
typedef struct {
DigitalSignal* one;
DigitalSignal* zero;
DigitalSignal* seq_d; /* sequence D, modulation with subcarrier during first half */
DigitalSignal* seq_e; /* sequence E, modulation with subcarrier during second half */
DigitalSignal* seq_f; /* sequence F, no modulation at all */
DigitalSequence* tx_signal;
} NfcaSignal;