Sha256: 547775808e74c0f0513abe9b45068ec7b251b498171fd4d4736b3628f7784590

Contents?: true

Size: 588 Bytes

Versions: 2

Compression:

Stored size: 588 Bytes

Contents

/* =========================================================================
    Ceedling - Test-Centered Build System for C
    ThrowTheSwitch.org
    Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
    SPDX-License-Identifier: MIT
========================================================================= */

#ifndef _ADCTEMPERATURESENSOR_H
#define _ADCTEMPERATURESENSOR_H

#include "Types.h"

void Adc_StartTemperatureSensorConversion(void);
bool Adc_TemperatureSensorSampleReady(void);
uint16 Adc_ReadTemperatureSensor(void);

#endif // _ADCTEMPERATURESENSOR_H

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-1.0.1 examples/temp_sensor/src/AdcTemperatureSensor.h
ceedling-1.0.0 examples/temp_sensor/src/AdcTemperatureSensor.h