implement ISO14433-A fully in software for pointless experimenting reasons and improving the DigitalReader / SignalSequence code in performance

This commit is contained in:
g3gg0
2022-11-25 02:46:49 +01:00
parent 674a5c6f48
commit 013e88154f
14 changed files with 427 additions and 183 deletions

View File

@@ -5,6 +5,8 @@
#include <stdbool.h>
#include <furi_hal_gpio.h>
#include <stm32wbxx_ll_dma.h>
#include <stm32wbxx_ll_tim.h>
#ifdef __cplusplus
extern "C" {
@@ -27,6 +29,8 @@ typedef struct {
uint32_t reload_reg_remainder;
uint32_t gpio_buff[2];
const GpioPin* gpio;
LL_DMA_InitTypeDef dma_config_gpio;
LL_DMA_InitTypeDef dma_config_timer;
} DigitalSignal;
typedef struct {