24 lines
337 B
C
24 lines
337 B
C
//
|
|
// Created by CFIF on 14.12.23.
|
|
//
|
|
|
|
#ifndef FLAG_ADCS_H
|
|
#define FLAG_ADCS_H
|
|
|
|
#include "AdcFlagchip.h"
|
|
#include "LoggerInterface.h"
|
|
|
|
typedef struct {
|
|
tAdcFlagchip adc_0;
|
|
tAdcIO adc_0_IO;
|
|
|
|
tAdcFlagchip adc_1;
|
|
tAdcIO adc_1_IO;
|
|
} tAdcs;
|
|
|
|
extern tAdcs ADCS;
|
|
|
|
void Adcs_Init(tLoggerInterface *logger);
|
|
|
|
#endif //FLAG_ADCS_H
|