cpp_headers: Renamed C++ headers from .h -> .hpp
To make room for UPM C and C++ sensor code to coexist, all UPM
C++ headers have been renamed from h -> hpp. This commit contains
updates to documentation, includes, cmake collateral, examples, and
swig interface files.
* Renamed all cxx/cpp header files which contain the string
'copyright intel' from .h -> .hpp (if not already hpp).
* Replaced all references to .h with .hpp in documentation,
source files, cmake collateral, example code, and swig interface
files.
* Replaced cmake variable module_h with module_hpp.
* Intentionally left upm.h since this file currently does not
contain code (documentation only).
Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
193
src/ds1307/ds1307.hpp
Normal file
193
src/ds1307/ds1307.hpp
Normal file
@@ -0,0 +1,193 @@
|
||||
/*
|
||||
* Author: Jon Trulson <jtrulson@ics.com>
|
||||
* Copyright (c) 2014 Intel Corporation.
|
||||
*
|
||||
* Adapted from Seeed Studio library:
|
||||
* https://github.com/Seeed-Studio/RTC_DS1307
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <mraa/i2c.hpp>
|
||||
|
||||
#define DS1307_I2C_BUS 0
|
||||
#define DS1307_I2C_ADDR 0x68
|
||||
|
||||
// Days of the week
|
||||
#define DS1307_DAY_MON 1
|
||||
#define DS1307_DAY_TUE 2
|
||||
#define DS1307_DAY_WED 3
|
||||
#define DS1307_DAY_THU 4
|
||||
#define DS1307_DAY_FRI 5
|
||||
#define DS1307_DAY_SAT 6
|
||||
#define DS1307_DAY_SUN 7
|
||||
|
||||
namespace upm {
|
||||
/**
|
||||
* @brief DS1307 Real-Time Clock library
|
||||
* @defgroup ds1307 libupm-ds1307
|
||||
* @ingroup seeed i2c time
|
||||
*/
|
||||
|
||||
/**
|
||||
* @library ds1307
|
||||
* @sensor ds1307
|
||||
* @comname Grove RTC (Real-Time Clock)
|
||||
* @altname DS1307 RTC
|
||||
* @type time
|
||||
* @man seeed
|
||||
* @con i2c
|
||||
*
|
||||
* @brief API for the DS1307 Real-Time CLock
|
||||
*
|
||||
* UPM module for the DS1307-based real-time clock. The clock can provide information
|
||||
* about seconds, minutes, hours, day of the week, day of the month,
|
||||
* month, and year. It can operate in either a 24-hour or a 12-hour format.
|
||||
* This device can also output a square wave at 1Khz, 4Khz, 8Khz, and 32Khz.
|
||||
* However, this capability is not implemented in this module.
|
||||
*
|
||||
* @image html ds1307.jpg
|
||||
* @snippet ds1307.cxx Interesting
|
||||
*/
|
||||
class DS1307 {
|
||||
public:
|
||||
/**
|
||||
* DS1307 constructor
|
||||
*
|
||||
* @param bus I2C bus to use
|
||||
*/
|
||||
DS1307(int bus);
|
||||
|
||||
/**
|
||||
* Loads all the time values
|
||||
*
|
||||
* @return True if time data loaded successfully
|
||||
*/
|
||||
bool loadTime();
|
||||
|
||||
/**
|
||||
* Sets the time. You should call loadTime() beforehand to
|
||||
* maintain consistency
|
||||
*
|
||||
* @return True if time is set successfully
|
||||
*/
|
||||
bool setTime();
|
||||
|
||||
/**
|
||||
* Enables an oscillator on the clock.
|
||||
*
|
||||
* @return 0 (mraa::SUCCESS) if successful; non-zero otherwise
|
||||
*/
|
||||
mraa::Result enableClock();
|
||||
|
||||
/**
|
||||
* Disables the oscillator on the clock. This prevents the clock
|
||||
* from updating any time/date values
|
||||
*
|
||||
* @return 0 (mraa::SUCCESS) if successful; non-zero otherwise
|
||||
*/
|
||||
mraa::Result disableClock();
|
||||
|
||||
/**
|
||||
* Writes value(s) into registers
|
||||
*
|
||||
* @param reg Register location to start writing into
|
||||
* @param buffer Buffer for data storage
|
||||
* @param len Number of bytes to write
|
||||
* @return 0 (mraa::SUCCESS) if successful; non-zero otherwise
|
||||
*/
|
||||
mraa::Result writeBytes(uint8_t reg, uint8_t *buffer, int len);
|
||||
|
||||
/**
|
||||
* Reads value(s) from registers
|
||||
*
|
||||
* @param reg Register location to start reading from
|
||||
* @param buffer Buffer for data storage
|
||||
* @param len Number of bytes to read
|
||||
* @return Number of bytes read
|
||||
*/
|
||||
int readBytes(uint8_t reg, uint8_t *buffer, int len);
|
||||
|
||||
/**
|
||||
* Converts a BCD value into decimal
|
||||
*
|
||||
* @param val BCD value to convert
|
||||
* @return Converted decimal value
|
||||
*/
|
||||
unsigned int bcdToDec(uint8_t val);
|
||||
|
||||
/**
|
||||
* Converts a decimal value into BCD
|
||||
*
|
||||
* @param val Decimal value to convert
|
||||
* @return Converted BCD value
|
||||
*/
|
||||
uint8_t decToBcd(unsigned int val);
|
||||
|
||||
// These variables store the time data loaded with loadTime(), and
|
||||
// are the source of data when setTime() is called. It is a
|
||||
// good idea to call loadTime() to set up the current values before
|
||||
// calling setTime() to ensure RTC data is consistent
|
||||
|
||||
/**
|
||||
* Holds seconds
|
||||
*/
|
||||
unsigned int seconds;
|
||||
/**
|
||||
* Holds minutes
|
||||
*/
|
||||
unsigned int minutes;
|
||||
/**
|
||||
* Holds hours; 1-12 in the am/pm format, 0-23 otherwise
|
||||
*/
|
||||
unsigned int hours;
|
||||
/**
|
||||
* Holds a day of the week; 1-7, where 1 is Sunday
|
||||
*/
|
||||
unsigned int dayOfWeek;
|
||||
/**
|
||||
* Holds a day of the month, 1-31
|
||||
*/
|
||||
unsigned int dayOfMonth;
|
||||
/**
|
||||
* Holds a month, 1-12
|
||||
*/
|
||||
unsigned int month;
|
||||
/**
|
||||
* Holds a year, 0-99
|
||||
*/
|
||||
unsigned int year;
|
||||
/**
|
||||
* True if the am/pm format is used, false otherwise
|
||||
*/
|
||||
bool amPmMode;
|
||||
/**
|
||||
* For the am/pm format, it is true if it's pm, false otherwise
|
||||
*/
|
||||
bool pm;
|
||||
|
||||
private:
|
||||
mraa::I2c m_i2c;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user