mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Currently, only the development bootloader can be built successfully. This is a part of the large iPod Nano 3G and iPod Nano 4G support patch. Credit: Cástor Muñoz <cmvidal@gmail.com> Change-Id: I74ea0da999ddb1d8ce5d0f5434141b3f0b5f7448
34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id: lcd-nano2g.c 28868 2010-12-21 06:59:17Z Buschel $
|
|
*
|
|
* Copyright (C) 2009 by Dave Chapman
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
#ifndef __LCD_TARGET_H__
|
|
#define __LCD_TARGET_H__
|
|
|
|
// #include "config.h"
|
|
|
|
/* define this to add support for LCDs with 16-bit command set */
|
|
// #define S5L_LCD_WITH_CMDSET16
|
|
|
|
/* define this to include support for LCD read ID command */
|
|
#define S5L_LCD_WITH_READID
|
|
|
|
// struct lcd_info_rec* lcd_target_get_info(void);
|
|
|
|
#endif /* __LCD_TARGET_H__ */
|