This is a port of the Adafruit driver and DateTime library for the DS1307 RTC controller

Dependents:   espresso-machine-control SAT_OLED Mbedesclava Mbedmaestra ... more

Import libraryAdafruit_RTCLib

This is a port of the Adafruit driver and DateTime library for the DS1307 RTC controller

This library was ported from Adafruit's RTCLib and then modified by splitting the out the driver separate from the DateTime class.

Also add support for access to the 56 bytes of user accessible battery backed ram.

I did not port, but left the RTC_Millis class in, and commented it out.

DS1307 RTC Breakout

Example

/*
 *  Copyright (c) 2012 Neal Horman - http://www.wanlink.com
 *  
 *  License: MIT open source (http://opensource.org/licenses/MIT)
 *      Summary;
 *      Use / modify / distribute / publish it how you want and 
 *      if you use it, or don't, you can't hold me liable for how
 *      it does or doesn't work.
 *      If it doesn't work how you want, don't use it, or change
 *      it so that it does work.
 */

#include "mbed.h"
#include "DS1307.h"
 
class I2C2 : public I2C
{
public:
    I2C2 ( PinName sda, PinName scl, int hz, const char *name = NULL) : I2C ( sda, scl, name) { frequency(hz * 100); };
};
 
I2C2 gI2c ( p28, p27, 100 );
RtcDs1307 gRtc ( gI2c );
Serial gSerial(USBTX, USBRX);
 
void printDT(char *pre, DateTime &dt)
{
    gSerial.printf("%s - %u/%u/%02u %2u:%02u:%02u\r\n"
                ,pre
                ,dt.month(),dt.day(),dt.year()
                ,dt.hour(),dt.minute(),dt.second()
                );
}
 
bool rtcUpdate(RtcDs1307 &rtc, int32_t bias) // this must be signed
{   bool bUpdated = false;
 
    // Use the compiled date/time as a basis for setting the clock.
    // We assign it to a signed integer so that negative biases work correctly
    int64_t compiledTime = DateTime(__DATE__,__TIME__).unixtime();
 
    // This assumes that the program is run VERY soon after the initial compile.
    time_t localt = DateTime(compiledTime + bias).unixtime(); // offset by bias
    
    // If the stored static time stamp does not equal the compiled time stamp,
    // then we need to update the RTC clock and the stored time stamp
    if(*((time_t *)&rtc[0]) != localt)
    {
        // Update the RTC time as local time, not GMT/UTC
        rtc.adjust(localt);
        // Store the new compiled time statically in the object ram image
        *((time_t *)&rtc[0]) = localt;
        // Push the object ram image to the RTC ram image
        bUpdated = rtc.commit();
    }
    
    return bUpdated;
}
 
int main()
{   time_t tick = 0;
 
    if(rtcUpdate(gRtc, -(5*60*60) )) // CDT
        gSerial.printf("Updated RTC to compiled time\r\n");
    gSerial.printf("compiled %s %s\r\n",__DATE__,__TIME__);
    DateTime timeFlashed(*((time_t *)&gRtc[0]));
    printDT("last flashed on",timeFlashed);
    DateTime dt = gRtc.now();
    printDT("reset",dt);
 
    gSerial.printf("rtc clock is %s\r\n", (gRtc.isRunning() ? "running" : "halted"));
 
    while(1)
    {
        if(time(NULL) >= tick)
        {
            dt = gRtc.now();
            gSerial.printf("%u/%u/%02u %2u:%02u:%02u          \r"
                ,dt.month(),dt.day(),dt.year()
                ,dt.hour(),dt.minute(),dt.second()
                );
            tick = time(NULL)+1;
        }
    }
}

DateTime.h

Committer:
nkhorman
Date:
2012-07-18
Revision:
1:2c4e81ecda67
Parent:
0:7f90c8e04249

File content as of revision 1:2c4e81ecda67:

// Code by JeeLabs http://news.jeelabs.org/code/
// Released to the public domain! Enjoy!

/*
 * Taken from https://github.com/adafruit/RTClib
 * and modified for LPC1768 by Neal Horman July 2012
 */
 
#ifndef _DATETIME_H_
#define _DATETIME_H_
 
#include "mbed.h"

// Simple general-purpose date/time class (no TZ / DST / leap second handling!)
class DateTime
{
public:
    DateTime (uint32_t t =0);
    DateTime (uint16_t year, uint8_t month, uint8_t day, uint8_t hour =0, uint8_t min =0, uint8_t sec =0);
    DateTime (const char* date, const char* time);
    uint16_t year() const       { return 2000 + yOff; }
    uint8_t month() const       { return m; }
    uint8_t day() const         { return d; }
    uint8_t hour() const        { return hh; }
    uint8_t minute() const      { return mm; }
    uint8_t second() const      { return ss; }
    uint8_t dayOfWeek() const;

    // 32-bit times as seconds since 1/1/1970
    uint32_t unixtime(void) const;

protected:
    uint8_t yOff, m, d, hh, mm, ss;
};

#ifdef WANT_RTC_MILLIS
// RTC using the internal millis() clock, has to be initialized before use
// NOTE: this clock won't be correct once the millis() timer rolls over (>49d?)
class RTC_Millis
{
public:
    static void begin(const DateTime& dt) { adjust(dt); }
    static void adjust(const DateTime& dt);
    static DateTime now();

protected:
    static long offset;
};
#endif

#endif