NanoPayload

stage2/stage2.c

63:d81fbf93be63
2015-06-14 Paul Boddie Fixed minor licensing details and reformatted boilerplate. stage2-non-pic
     1 /*     2  * Ben NanoNote stage 2 payload test.     3  *     4  * Copyright (C) Wolfgang Spraul <wolfgang@sharism.cc>     5  * Copyright (C) 2015 Paul Boddie <paul@boddie.org.uk>     6  *     7  * This program is free software: you can redistribute it and/or modify     8  * it under the terms of the GNU General Public License as published by     9  * the Free Software Foundation, either version 3 of the License, or    10  * (at your option) any later version.    11  *    12  * This program is distributed in the hope that it will be useful,    13  * but WITHOUT ANY WARRANTY; without even the implied warranty of    14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    15  * GNU General Public License for more details.    16  *    17  * You should have received a copy of the GNU General Public License    18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.    19  */    20     21 #ifdef CONFIG_CPU_JZ4730_MINIPC    22 #include "board-minipc.h"    23 #else    24 #include "board-nanonote.h"    25 #endif    26     27 #include "lcd.h"    28     29 void c_main(void)    30 {    31 	volatile int started;    32     33 	/* The actual work. */    34     35 	started = is_started();    36 	if (!started) {    37 		gpio_init2();    38 		cpm_init();    39 		rtc_init();    40 		timer_init();    41 	}    42 	lcd_init();    43 	while (1);    44 }