* Made CMake depend on 0.4 libmraa Signed-off-by: Thomas Ingleby <thomas.c.ingleby@intel.com>
104 lines
2.8 KiB
C++
104 lines
2.8 KiB
C++
/*
|
|
* Author: Brendan Le Foll <brendan.le.foll@intel.com>
|
|
* Copyright (c) 2014 Intel Corporation.
|
|
*
|
|
* 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 <iostream>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <functional>
|
|
#include <string.h>
|
|
|
|
#include "max31855.h"
|
|
|
|
using namespace upm;
|
|
|
|
//! [Constructor]
|
|
MAX31855::MAX31855(int bus, int cs)
|
|
{
|
|
// initialise chip select as a normal gpio
|
|
m_gpio = mraa_gpio_init(cs);
|
|
mraa_gpio_dir(m_gpio, MRAA_GPIO_OUT);
|
|
|
|
// initialise the spi bus with a 2Mhz clock
|
|
m_sensor = mraa_spi_init(bus);
|
|
mraa_spi_frequency(m_sensor, 2000000);
|
|
}
|
|
//! [Constructor]
|
|
|
|
//! [Destructor]
|
|
MAX31855::~MAX31855()
|
|
{
|
|
// close both m_sensor & m_gpio cleanly
|
|
mraa_result_t error;
|
|
error = mraa_spi_stop(m_sensor);
|
|
if (error != MRAA_SUCCESS) {
|
|
mraa_result_print(error);
|
|
}
|
|
error = mraa_gpio_close(m_gpio);
|
|
if (error != MRAA_SUCCESS) {
|
|
mraa_result_print(error);
|
|
}
|
|
}
|
|
//! [Destructor]
|
|
|
|
double
|
|
MAX31855::getTemp()
|
|
{
|
|
//! [spi]
|
|
// set chip select low
|
|
mraa_gpio_write(m_gpio, 0);
|
|
|
|
uint8_t buf[4];
|
|
|
|
// set our input buffer to 0, this is clean but not required
|
|
memset(buf, 0, sizeof(uint8_t)*4);
|
|
|
|
// Write buffer to the spi slave
|
|
uint8_t* x = mraa_spi_write_buf(m_sensor, buf, 4);
|
|
//! [spi]
|
|
|
|
//! [conversion]
|
|
// Endian correct way of making our char array into an 32bit int
|
|
int32_t temp = (x[0] << 24) | (x[1] << 16) | (x[2] << 8) | x[3];;
|
|
|
|
// mraa_spi_write_buf does not free the return buffer
|
|
free(x);
|
|
|
|
if (temp & 0x7) {
|
|
std::cerr << "Something went very wrong!" << std::endl;
|
|
}
|
|
|
|
// scrap all the data we dont care about
|
|
temp >>= 18;
|
|
|
|
// LSB = 0.25 degrees C
|
|
double c = (double) temp;
|
|
c *= 0.25;
|
|
//! [conversion]
|
|
|
|
// set chip select high
|
|
mraa_gpio_write(m_gpio, 1);
|
|
|
|
return c;
|
|
}
|