2014-03-27 23:31:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 by Szymon Dziok
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
SANSA VIEW: TESTING CODE
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "config.h"
|
|
|
|
#include "inttypes.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "lcd.h"
|
2014-08-08 06:28:11 +00:00
|
|
|
#include "../kernel-internal.h"
|
2014-03-27 23:31:04 +00:00
|
|
|
#include "storage.h"
|
|
|
|
#include "disk.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "backlight.h"
|
|
|
|
#include "backlight-target.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include "power.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
system_init();
|
|
|
|
kernel_init();
|
|
|
|
disable_irq();
|
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
2015-01-08 23:22:40 +00:00
|
|
|
backlight_hw_on();
|
|
|
|
buttonlight_hw_off();
|
2014-03-27 23:31:04 +00:00
|
|
|
sleep(HZ/4);
|
2015-01-08 23:22:40 +00:00
|
|
|
backlight_hw_off();
|
|
|
|
buttonlight_hw_on();
|
2014-03-27 23:31:04 +00:00
|
|
|
sleep(HZ/4);
|
|
|
|
}
|
|
|
|
}
|