Select Git revision
MAX31855.cpp
Forked from
Avionics / Software Development / Skyward Boardcore
351 commits behind the upstream repository.
-
Matteo Pignataro authoredMatteo Pignataro authored
MAX31855.cpp 3.03 KiB
/* Copyright (c) 2021 Skyward Experimental Rocketry
* Author: Angelo Zangari
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "MAX31855.h"
#include <drivers/timer/TimestampTimer.h>
namespace Boardcore
{
MAX31855::MAX31855(SPIBusInterface& bus, miosix::GpioPin cs,
SPIBusConfig config)
: slave(bus, cs, config)
{
}
SPIBusConfig MAX31855::getDefaultSPIConfig()
{
SPIBusConfig spiConfig{};
spiConfig.clockDivider = SPI::ClockDivider::DIV_32;
spiConfig.mode = SPI::Mode::MODE_1;
return spiConfig;
}
bool MAX31855::init() { return true; }
bool MAX31855::selfTest() { return true; }
bool MAX31855::checkConnection()
{
uint16_t sample[2];
{
SPITransaction spi{slave};
spi.read16(sample, sizeof(sample));
}
// Bits D0, D1 and D2 go high if thermocouple is open or shorted either to
// gnd or Vcc
if ((sample[1] & 0x7) != 0)
{
lastError = SensorErrors::SELF_TEST_FAIL;
LOG_ERR(logger, "Self test failed, the thermocouple is not connected");
return false;
}
return true;
}
TemperatureData MAX31855::sampleImpl()
{
int16_t sample;
{
SPITransaction spi{slave};
sample = spi.read16();
sample = sample >> 2;
}
TemperatureData result{};
result.temperatureTimestamp = TimestampTimer::getTimestamp();
// Convert the integer and decimal part separately
result.temperature = static_cast<float>(sample) * 0.25;
return result;
}
TemperatureData MAX31855::readInternalTemperature()
{
uint16_t sample[2];
{
SPITransaction spi{slave};
spi.read16(sample, sizeof(sample));
}
TemperatureData result{};
result.temperatureTimestamp = TimestampTimer::getTimestamp();
// Extract data bits
sample[1] = sample[1] >> 4;
// Convert the integer and decimal part separately
result.temperature = static_cast<float>(sample[1] >> 4);
result.temperature += static_cast<float>(sample[1] & 0xF) * 0.0625;
return result;
}
} // namespace Boardcore