mirror of https://github.com/ArduPilot/ardupilot
36 lines
900 B
C++
36 lines
900 B
C++
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
#ifndef __AP_ADC_ADS7844_H__
|
|
#define __AP_ADC_ADS7844_H__
|
|
|
|
|
|
#include <inttypes.h>
|
|
#include "AP_ADC.h"
|
|
#include <AP_HAL.h>
|
|
|
|
class AP_ADC_ADS7844 : public AP_ADC
|
|
{
|
|
public:
|
|
AP_ADC_ADS7844(); // Constructor
|
|
void Init();
|
|
|
|
// Read 1 sensor value
|
|
float Ch(unsigned char ch_num);
|
|
|
|
// Read 6 sensors at once
|
|
uint32_t Ch6(const uint8_t *channel_numbers, float *result);
|
|
|
|
// check if Ch6 would block
|
|
bool new_data_available(const uint8_t *channel_numbers);
|
|
|
|
// Get minimum number of samples read from the sensors
|
|
uint16_t num_samples_available(const uint8_t *channel_numbers);
|
|
|
|
private:
|
|
static void read(uint32_t);
|
|
static AP_HAL::SPIDeviceDriver *_spi;
|
|
static AP_HAL::Semaphore *_spi_sem;
|
|
|
|
};
|
|
|
|
#endif
|