2014-04-25 14:48:43 +01:00
|
|
|
/*
|
2017-01-25 17:37:29 -07:00
|
|
|
* Author: Jon Trulson <jtrulson@ics.com>
|
|
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
|
|
*
|
|
|
|
* Ported based on original C++ code by:
|
2014-04-25 14:48:43 +01:00
|
|
|
* Author: Brendan Le Foll <brendan.le.foll@intel.com>
|
2015-02-10 11:34:28 -08:00
|
|
|
* Contributions: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
|
2014-04-25 14:48:43 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2015-09-09 11:13:15 -06:00
|
|
|
#include <string>
|
|
|
|
#include <stdexcept>
|
|
|
|
|
2016-04-25 14:27:51 -07:00
|
|
|
#include "hmc5883l.hpp"
|
2014-04-25 14:48:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
using namespace upm;
|
2017-01-25 17:37:29 -07:00
|
|
|
using namespace std;
|
2014-04-25 14:48:43 +01:00
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
Hmc5883l::Hmc5883l(int bus) :
|
|
|
|
m_hmc5883l(hmc5883l_init(bus))
|
2014-04-25 14:48:43 +01:00
|
|
|
{
|
2017-01-25 17:37:29 -07:00
|
|
|
if (!m_hmc5883l)
|
|
|
|
throw std::runtime_error(string(__FUNCTION__)
|
|
|
|
+ ": hmc5883l_init() failed");
|
2014-04-25 14:48:43 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
upm_result_t Hmc5883l::update(void)
|
2014-04-25 14:48:43 +01:00
|
|
|
{
|
2017-01-25 17:37:29 -07:00
|
|
|
if (hmc5883l_update(m_hmc5883l))
|
|
|
|
throw std::runtime_error(string(__FUNCTION__)
|
|
|
|
+ ": hmc5883l_update() failed");
|
2014-04-30 14:58:11 +01:00
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
// kind of pointless, but want to maintain some compatibility with
|
|
|
|
// original code.
|
|
|
|
return UPM_SUCCESS;
|
2014-04-25 14:48:43 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
float Hmc5883l::direction(void)
|
2014-04-25 14:48:43 +01:00
|
|
|
{
|
2017-01-25 17:37:29 -07:00
|
|
|
return hmc5883l_direction(m_hmc5883l);
|
2014-04-25 14:48:43 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
float Hmc5883l::heading(void)
|
2014-04-25 14:48:43 +01:00
|
|
|
{
|
2017-01-25 17:37:29 -07:00
|
|
|
return hmc5883l_heading(m_hmc5883l);
|
2014-04-25 14:48:43 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
const int16_t *Hmc5883l::coordinates(void)
|
2014-04-25 14:48:43 +01:00
|
|
|
{
|
2017-01-25 17:37:29 -07:00
|
|
|
return hmc5883l_coordinates(m_hmc5883l);
|
2014-04-25 14:48:43 +01:00
|
|
|
}
|
2014-11-14 11:34:43 -08:00
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
void Hmc5883l::set_declination(float dec)
|
2014-11-14 11:34:43 -08:00
|
|
|
{
|
2017-01-25 17:37:29 -07:00
|
|
|
return hmc5883l_set_declination(m_hmc5883l, dec);
|
2014-11-14 11:34:43 -08:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:37:29 -07:00
|
|
|
float Hmc5883l::get_declination()
|
2014-11-14 11:34:43 -08:00
|
|
|
{
|
2017-01-25 17:37:29 -07:00
|
|
|
return hmc5883l_get_declination(m_hmc5883l);
|
2014-11-14 11:34:43 -08:00
|
|
|
}
|