You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
705 B
28 lines
705 B
|
|
#ifndef __AP_HAL_SMACCM_ANALOGIN_H__ |
|
#define __AP_HAL_SMACCM_ANALOGIN_H__ |
|
|
|
#include <AP_HAL_SMACCM.h> |
|
|
|
class SMACCM::SMACCMAnalogSource : public AP_HAL::AnalogSource { |
|
public: |
|
SMACCMAnalogSource(float v); |
|
float read_average(); |
|
float read_latest(); |
|
void set_pin(uint8_t p); |
|
float voltage_average(); |
|
void set_stop_pin(uint8_t p) {} |
|
void set_settle_time(uint16_t settle_time_ms) {} |
|
|
|
private: |
|
float _v; |
|
}; |
|
|
|
class SMACCM::SMACCMAnalogIn : public AP_HAL::AnalogIn { |
|
public: |
|
SMACCMAnalogIn(); |
|
void init(void* implspecific); |
|
AP_HAL::AnalogSource* channel(int16_t n); |
|
AP_HAL::AnalogSource* channel(int16_t n, float scale); |
|
}; |
|
#endif // __AP_HAL_SMACCM_ANALOGIN_H__
|
|
|