Robin Mueller
82f9d9db4b
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
6 lines
174 B
C++
6 lines
174 B
C++
#include "max1227.h"
|
|
|
|
uint8_t max1227::buildConvByte(ScanModes scanMode, uint8_t channel, bool readTemp) {
|
|
return (1 << 7) | (channel << 3) | (scanMode << 1) | readTemp;
|
|
}
|