RTC8563

Dependents:   rtc_func Projekt_Wecker_LCD Projekt_Wecker_LCD Projekt_Wecker_LCD

Committer:
wolpra98
Date:
Thu Apr 30 10:12:13 2015 +0000
Revision:
2:e84a6be5784c
Parent:
0:9017c5d1bbb2
Alarm Clock with Lcd-Display

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolpra98 0:9017c5d1bbb2 1 /***********************************
wolpra98 0:9017c5d1bbb2 2 name: const.h Version: 0.1
wolpra98 0:9017c5d1bbb2 3 author: PE HTL BULME
wolpra98 0:9017c5d1bbb2 4 email: pe@bulme.at
wolpra98 0:9017c5d1bbb2 5 description:
wolpra98 0:9017c5d1bbb2 6 Named constants definitions for registers
wolpra98 0:9017c5d1bbb2 7 PCF8563 RTC on HIMBED M0 - LPC11U24
wolpra98 0:9017c5d1bbb2 8 ***********************************/
wolpra98 0:9017c5d1bbb2 9
wolpra98 0:9017c5d1bbb2 10 #ifndef CONST_H
wolpra98 0:9017c5d1bbb2 11 #define CONST_H
wolpra98 0:9017c5d1bbb2 12
wolpra98 0:9017c5d1bbb2 13 // Address of RTC
wolpra98 0:9017c5d1bbb2 14 const int RTC8563_ADR = 0xA2;
wolpra98 0:9017c5d1bbb2 15 // Control and status
wolpra98 0:9017c5d1bbb2 16 const int CONTROL1 = 0x00;
wolpra98 0:9017c5d1bbb2 17 const int CONTROL2 = 0x01;
wolpra98 0:9017c5d1bbb2 18 // Time and date
wolpra98 0:9017c5d1bbb2 19 const int SECONDS = 0x02;
wolpra98 0:9017c5d1bbb2 20 const int MINUTES = 0x03;
wolpra98 0:9017c5d1bbb2 21 const int HOURS = 0x04;
wolpra98 0:9017c5d1bbb2 22 const int DAYS = 0x05;
wolpra98 0:9017c5d1bbb2 23 const int WEEKDAYS = 0x06;
wolpra98 0:9017c5d1bbb2 24 const int MONTHS = 0x07;
wolpra98 0:9017c5d1bbb2 25 const int YEARS = 0x08;
wolpra98 0:9017c5d1bbb2 26 // Alarm
wolpra98 0:9017c5d1bbb2 27 const int MINUTE_ALARM = 0x09;
wolpra98 0:9017c5d1bbb2 28 const int HOUR_ALARM = 0x0A;
wolpra98 0:9017c5d1bbb2 29 const int DAY_ALARM = 0x0B;
wolpra98 0:9017c5d1bbb2 30 const int WEEKDAY_ALARM = 0x0C;
wolpra98 0:9017c5d1bbb2 31 // Clock and timer
wolpra98 0:9017c5d1bbb2 32 const int CLOCKOUT_FREQ = 0x0D;
wolpra98 0:9017c5d1bbb2 33 const int TIMER_CINTROL = 0x0E;
wolpra98 0:9017c5d1bbb2 34 const int _READ = 0x01;
wolpra98 0:9017c5d1bbb2 35
wolpra98 0:9017c5d1bbb2 36 #endif