 5769595e67
			
		
	
	
		5769595e67
		
			
		
	
	
	
	
		
			
			* digital_signal: optimize calculationxx * firmware: add listen start and listen rx * digital signal: rework with fixed point calculation * nfc: tune timings * nfc: fix array overflow * mifare classic: fix key access * nfc: rework spi bus access * nfc: rework listen mode with st25r3916 calls * digital signal: speed up digital_signal_append() * digital signal: remove unused profiling * nfc: clean up code * nfc: correct sleep state * nfc: add unit tests * nfc: fix memory leak in unit test * digital_signal: remove unused code * nfc: fix incorrect sak load in pt memory Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			790 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			790 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdlib.h>
 | |
| #include <stdbool.h>
 | |
| 
 | |
| #include <furi_hal_gpio.h>
 | |
| 
 | |
| typedef struct {
 | |
|     bool start_level;
 | |
|     uint32_t edge_cnt;
 | |
|     uint32_t edges_max_cnt;
 | |
|     uint32_t* edge_timings;
 | |
|     uint32_t* reload_reg_buff;
 | |
| } DigitalSignal;
 | |
| 
 | |
| DigitalSignal* digital_signal_alloc(uint32_t max_edges_cnt);
 | |
| 
 | |
| void digital_signal_free(DigitalSignal* signal);
 | |
| 
 | |
| bool digital_signal_append(DigitalSignal* signal_a, DigitalSignal* signal_b);
 | |
| 
 | |
| void digital_signal_prepare_arr(DigitalSignal* signal);
 | |
| 
 | |
| bool digital_signal_get_start_level(DigitalSignal* signal);
 | |
| 
 | |
| uint32_t digital_signal_get_edges_cnt(DigitalSignal* signal);
 | |
| 
 | |
| uint32_t digital_signal_get_edge(DigitalSignal* signal, uint32_t edge_num);
 | |
| 
 | |
| void digital_signal_send(DigitalSignal* signal, const GpioPin* gpio);
 |