]>
git.zerfleddert.de Git - fnordlicht-mini/blob - firmware/fnordlicht-firmware/fnordlicht.c
b5e2ffec076261b4b3dd471683e3a41c9c48de15
1 /* vim:ts=4 sts=4 et tw=80
5 * for additional information please
6 * see http://lochraster.org/fnordlichtmini
8 * (c) by Alexander Neumann <alexander@bumpern.de>
9 * Lars Noschinski <lars@public.noschinski.de>
11 * This program is free software: you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License version 3 as published by
13 * the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 * You should have received a copy of the GNU General Public License along with
21 * this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "../common/io.h"
29 #include <avr/interrupt.h>
30 #include <avr/pgmspace.h>
33 #include "../common/common.h"
41 static void startup(void)
43 /* if configuration is valid */
44 if (storage_valid_config()) {
46 /* read default mode from storage (do nothing if mode is invalid) */
47 if (startup_config
.params
.mode
== STARTUP_PROGRAM
) {
49 script_start(0, startup_config
.params
.program
, (union program_params_t
*)startup_config
.params
.program_parameters
);
52 /* start default program */
53 script_start_default();
56 /* or set some default color */
57 global_pwm
.target
.red
= 50;
62 /* NEVER CALL DIRECTLY! */
63 void disable_watchdog(void) \
64 __attribute__((naked
)) \
65 __attribute__((section(".init3")));
66 void disable_watchdog(void)
83 /* do high-level startup configuration */
86 /* enable interrupts globally */
94 /* check for remote commands */
112 /* process storage requests */