Robin Mueller
82f9d9db4b
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
21 lines
359 B
C++
21 lines
359 B
C++
#ifndef MISSION_DEVICES_MAX1227_H_
|
|
#define MISSION_DEVICES_MAX1227_H_
|
|
|
|
#include <cstdint>
|
|
|
|
namespace max1227 {
|
|
|
|
enum ScanModes : uint8_t {
|
|
CHANNELS_0_TO_N = 0b00,
|
|
CHANNEL_N_TO_HIGHEST = 0b01,
|
|
N_REPEATEDLY = 0b10,
|
|
N_ONCE = 0b11
|
|
};
|
|
|
|
|
|
uint8_t buildConvByte(ScanModes scanMode, uint8_t channel, bool readTemp);
|
|
|
|
}
|
|
|
|
#endif /* MISSION_DEVICES_MAX1227_H_ */
|