rockbox/bootloader/sansa_as3525.c

61 lines
1.8 KiB
C
Raw Normal View History

/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2008 by Rafaël Carré
*
* Based on Rockbox iriver bootloader by Linus Nielsen Feltzing
* and the ipodlinux bootloader by Daniel Palffy and Bernard Leach
*
* 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.
*
****************************************************************************/
#include <stdio.h>
#include <system.h>
#include <inttypes.h>
#include "lcd.h"
#include "common.h"
#include "config.h"
int show_logo(void);
void main(void)
{
lcd_init_device();
lcd_clear_display();
lcd_update();
#ifdef HAVE_LCD_ENABLE
lcd_enable(true);
#endif
show_logo();
#ifdef SANSA_CLIP
/* Use hardware scrolling */
lcd_write_command(0x26); /* scroll setup */
lcd_write_command(0x01); /* columns scrolled per step */
lcd_write_command(0x00); /* start page */
lcd_write_command(0x00); /* steps freqency */
lcd_write_command(0x07); /* end page (including) */
lcd_write_command(0x2F); /* start horizontal scrolling */
#endif
/* never returns */
while(1) ;
}