start penna zip

This commit is contained in:
PanSi21 2025-11-18 16:01:22 +01:00
parent e60146cdfe
commit 88b607c42f
Signed by untrusted user who does not match committer: PanSi21
GPG key ID: 198E46F625BADD13
188 changed files with 236868 additions and 0 deletions

9
Exp01/Core/Inc/DEXP.h Normal file
View file

@ -0,0 +1,9 @@
#include <stdint.h>
#define AMP 40000 // ampiezza
#define T1 25 // cost. tempo tau-1
#define T2 8 // cost. tempo tau-2
#define EXP1 0.96079*(1<<10) // valore numerico exp(-1/T1)
#define EXP2 0.88250*(1<<10) // valore numerico exp(-1/T2)
void eval_dexp(int a, int t1, int t2, uint16_t* espo);