diff --git a/Changelog.txt b/Changelog.txt index 6880c6a..71095e6 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,5 +1,5 @@ $Id: Changelog.txt,v 1.1 2007/01/02 21:30:39 rschaten Exp $ -* Release 07010x +* Release 070103 - initial release diff --git a/binarydcf77clock.dox b/binarydcf77clock.dox index 9e62d43..79bfafa 100644 --- a/binarydcf77clock.dox +++ b/binarydcf77clock.dox @@ -146,10 +146,8 @@ * * \section sec_license About the license * - * Our work - all contents except for the USB driver - are licensed under the - * GNU General Public License (GPL). A copy of the GPL is included in - * License.txt. The driver itself is licensed under a special license by - * Objective Development. See firmware/usbdrv/License.txt for further info. + * This project is licensed under the GNU General Public License (GPL). A copy + * of the GPL is included in License.txt. * * (c) 2006 by Ronald Schaten - http://www.schatenseite.de */ diff --git a/binarydcf77clock.doxygen b/binarydcf77clock.doxygen index d484dc2..3698f46 100644 --- a/binarydcf77clock.doxygen +++ b/binarydcf77clock.doxygen @@ -1096,7 +1096,7 @@ HIDE_UNDOC_RELATIONS = YES # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) -HAVE_DOT = NO +HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and diff --git a/firmware/main.c b/firmware/main.c index 03e7dcc..607d861 100644 --- a/firmware/main.c +++ b/firmware/main.c @@ -245,7 +245,7 @@ void timerInterrupt(void) { if (!(PINC & (1 << PINC2))) { // key pressed keycounter++; - if (keycounter > 4) { + if (keycounter > 2) { // after 4 cycles with pressed key, switch to the next mode keycounter = 0; mode++; @@ -289,13 +289,13 @@ void timerInterrupt(void) { // set the current date and time to a fixed value to demonstrate // how the time is displayed datetime.is_valid = 1; - datetime.time.hour = 10; - datetime.time.minute = 35; - datetime.time.second = 10; - datetime.date.dayofmonth = 30; + datetime.time.hour = 23; + datetime.time.minute = 49; + datetime.time.second = 57; + datetime.date.dayofmonth = 31; datetime.date.month = 12; datetime.date.year = 6; - datetime.date.dayofweek = 6; + datetime.date.dayofweek = 7; } else { datetime = dcf_current_datetime(); }