some very old changes, resurrected from the old CVS, almost forgotten
This commit is contained in:
parent
1f77141a10
commit
f660282ec5
@ -1,5 +1,5 @@
|
||||
$Id: Changelog.txt,v 1.1 2007/01/02 21:30:39 rschaten Exp $
|
||||
|
||||
* Release 07010x
|
||||
* Release 070103
|
||||
|
||||
- initial release
|
||||
|
@ -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.
|
||||
*
|
||||
* <b>(c) 2006 by Ronald Schaten - http://www.schatenseite.de</b>
|
||||
*/
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user