Adc/Src/Adc.c

11 lines
179 B
C

//
// Created by cfif on 17.11.22.
//
#include "Adc.h"
#include "SystemDelayInterface.h"
uint16_t AdcGet(tAdcIO *io, uint32_t timeout) {
return io->get(io->env, timeout);
}