Fix typo.
[Rockbox.git] / firmware / export / pp5024.h
blob5e2de1774130bf415df98f42add4dd3bc3a9ac49
1 #ifndef __PP5024_H__
2 #define __PP5024_H__
3 /***************************************************************************
4 * __________ __ ___.
5 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
6 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
7 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
8 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * \/ \/ \/ \/ \/
10 * $Id$
12 * Copyright (C) 2006 by Daniel Stenberg
14 * All files in this archive are subject to the GNU General Public License.
15 * See the file COPYING in the source tree root for full license agreement.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 /* We believe is this quite similar to the 5020 and for how we just use that
23 completely and redifine any minor differences */
24 #include "pp5020.h"
26 #undef GPIO_IRQ
27 /* Ports A, B, ?? */
28 #define GPIO0_IRQ (32+0)
29 /* Ports F, H, ?? */
30 #define GPIO1_IRQ (32+1)
32 #undef GPIO_MASK
33 #define GPIO0_MASK (1 << (GPIO0_IRQ-32))
34 #define GPIO1_MASK (1 << (GPIO1_IRQ-32))
36 #endif