заготовка для симуляции АЦП

This commit is contained in:
Razvalyaev 2025-01-15 11:49:27 +03:00
parent 4cdcd20770
commit affe05dc54
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,3 @@
#include "adc_sim.h"
AdcSimHandle adcsim;

12
Inu/main_matlab/adc_sim.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef PWM_SIM
#define PWM_SIM
// Äëÿ ìîäåëèðîâàíèÿ ADC
typedef struct
{
int tAdc;
int Tadc;
int nAdc;
}AdcSimHandle;
#endif //PWM_SIM