mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
This is the changes made by Patrick Plenefisch converting the native code to use CMake and the CMake Maven Plugin, as opposed to the native Maven plugin. This is to allow for compatibility with newer versions of the GCC toolchain. All the cpp sources were moved from maven style directories to cpp style directories for CMake. Change-Id: I67f5e3608948f37c83b0990d232105a3784f8593
57 lines
1.9 KiB
C++
57 lines
1.9 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2008. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#ifndef ANALOG_MODULE_H_
|
|
#define ANALOG_MODULE_H_
|
|
|
|
#include "HAL/HAL.h"
|
|
#include "Module.h"
|
|
|
|
/**
|
|
* Analog Module class.
|
|
* Each module can independently sample its channels at a configurable rate.
|
|
* There is a 64-bit hardware accumulator associated with channel 1 on each module.
|
|
* The accumulator is attached to the output of the oversample and average engine so that the center
|
|
* value can be specified in higher resolution resulting in less error.
|
|
*/
|
|
class AnalogModule: public Module
|
|
{
|
|
friend class Module;
|
|
|
|
public:
|
|
static const long kTimebase = 40000000; ///< 40 MHz clock
|
|
static const long kDefaultOversampleBits = 0;
|
|
static const long kDefaultAverageBits = 7;
|
|
static const uint32_t kAnalogChannels = 8;
|
|
static constexpr float kDefaultSampleRate = 50000.0;
|
|
|
|
void SetSampleRate(float samplesPerSecond);
|
|
float GetSampleRate();
|
|
void SetAverageBits(uint32_t channel, uint32_t bits);
|
|
uint32_t GetAverageBits(uint32_t channel);
|
|
void SetOversampleBits(uint32_t channel, uint32_t bits);
|
|
uint32_t GetOversampleBits(uint32_t channel);
|
|
int16_t GetValue(uint32_t channel);
|
|
int32_t GetAverageValue(uint32_t channel);
|
|
float GetAverageVoltage(uint32_t channel);
|
|
float GetVoltage(uint32_t channel);
|
|
uint32_t GetLSBWeight(uint32_t channel);
|
|
int32_t GetOffset(uint32_t channel);
|
|
int32_t VoltsToValue(int32_t channel, float voltage);
|
|
|
|
static AnalogModule* GetInstance(uint8_t moduleNumber);
|
|
|
|
protected:
|
|
explicit AnalogModule(uint8_t moduleNumber);
|
|
virtual ~AnalogModule();
|
|
|
|
private:
|
|
uint8_t m_moduleNumber;
|
|
void* m_ports[kAnalogChannels];
|
|
};
|
|
|
|
#endif
|