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 $
|
$Id: Changelog.txt,v 1.1 2007/01/02 21:30:39 rschaten Exp $
|
||||||
|
|
||||||
* Release 07010x
|
* Release 070103
|
||||||
|
|
||||||
- initial release
|
- initial release
|
||||||
|
@ -146,10 +146,8 @@
|
|||||||
*
|
*
|
||||||
* \section sec_license About the license
|
* \section sec_license About the license
|
||||||
*
|
*
|
||||||
* Our work - all contents except for the USB driver - are licensed under the
|
* This project is licensed under the GNU General Public License (GPL). A copy
|
||||||
* GNU General Public License (GPL). A copy of the GPL is included in
|
* of the GPL is included in License.txt.
|
||||||
* License.txt. The driver itself is licensed under a special license by
|
|
||||||
* Objective Development. See firmware/usbdrv/License.txt for further info.
|
|
||||||
*
|
*
|
||||||
* <b>(c) 2006 by Ronald Schaten - http://www.schatenseite.de</b>
|
* <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
|
# 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 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
|
# 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
|
# will generate a graph for each documented class showing the direct and
|
||||||
|
@ -245,7 +245,7 @@ void timerInterrupt(void) {
|
|||||||
if (!(PINC & (1 << PINC2))) {
|
if (!(PINC & (1 << PINC2))) {
|
||||||
// key pressed
|
// key pressed
|
||||||
keycounter++;
|
keycounter++;
|
||||||
if (keycounter > 4) {
|
if (keycounter > 2) {
|
||||||
// after 4 cycles with pressed key, switch to the next mode
|
// after 4 cycles with pressed key, switch to the next mode
|
||||||
keycounter = 0;
|
keycounter = 0;
|
||||||
mode++;
|
mode++;
|
||||||
@ -289,13 +289,13 @@ void timerInterrupt(void) {
|
|||||||
// set the current date and time to a fixed value to demonstrate
|
// set the current date and time to a fixed value to demonstrate
|
||||||
// how the time is displayed
|
// how the time is displayed
|
||||||
datetime.is_valid = 1;
|
datetime.is_valid = 1;
|
||||||
datetime.time.hour = 10;
|
datetime.time.hour = 23;
|
||||||
datetime.time.minute = 35;
|
datetime.time.minute = 49;
|
||||||
datetime.time.second = 10;
|
datetime.time.second = 57;
|
||||||
datetime.date.dayofmonth = 30;
|
datetime.date.dayofmonth = 31;
|
||||||
datetime.date.month = 12;
|
datetime.date.month = 12;
|
||||||
datetime.date.year = 6;
|
datetime.date.year = 6;
|
||||||
datetime.date.dayofweek = 6;
|
datetime.date.dayofweek = 7;
|
||||||
} else {
|
} else {
|
||||||
datetime = dcf_current_datetime();
|
datetime = dcf_current_datetime();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user