summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rfid_asic_rc632.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rfid_asic_rc632.c b/src/rfid_asic_rc632.c
index 28bd5a1..4e8feee 100644
--- a/src/rfid_asic_rc632.c
+++ b/src/rfid_asic_rc632.c
@@ -1201,19 +1201,19 @@ static struct rx_config rx_configs[] = {
};
static struct tx_config tx_configs[] = {
- {
+ [RFID_14443A_SPEED_106K] = {
.rate = RC632_CDRCTRL_RATE_106K,
.mod_width = 0x13,
},
- {
+ [RFID_14443A_SPEED_212K] = {
.rate = RC632_CDRCTRL_RATE_212K,
.mod_width = 0x07,
},
- {
+ [RFID_14443A_SPEED_424K] = {
.rate = RC632_CDRCTRL_RATE_424K,
.mod_width = 0x03,
},
- {
+ [RFID_14443A_SPEED_848K] = {
.rate = RC632_CDRCTRL_RATE_848K,
.mod_width = 0x01,
},
personal git repositories of Harald Welte. Your mileage may vary