Yoshiyuki Uehara / Mbed 2 deprecated Maple

Dependencies:   mbed

main.cpp

Committer:
uehara00
Date:
2011-10-10
Revision:
1:aefa1992ce0f
Parent:
0:0be38b583cf7
Child:
3:eec13a411e94

File content as of revision 1:aefa1992ce0f:

//copyright 2011 Uehara Yoshiyuki
//====================================================================
//The author provide the programs without any guarantees or warranty.
//The author is not responsible for any damage or losses of any kind 
//caused by using or misusing of the programs.
//The author is under no obligation to provide support, service, 
//corrections, or upgrades to the programs.
//====================================================================
// MAPLE board[MARM01-BASE]
// main
#include "Maple_alarm_clock.h"
#include "Maple_RTC.h"
#include "Maple_I2C.h"
#include "Maple_LCD.h"
#include "Maple.h"
#include "mbed.h"

int main() {
    LCD_initialize();
    RTC_initialize();
    alarm_clock_initialize();

    // wait interrupt
    while(1) {
    }
}