32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
|
/***************************************************************************
|
||
|
* __________ __ ___.
|
||
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||
|
* \/ \/ \/ \/ \/
|
||
|
* $Id$
|
||
|
*
|
||
|
* Copyright (c) 2008 by Michael Sevakis
|
||
|
*
|
||
|
* Gigabeat S GPIO interrupt event descriptions header
|
||
|
*
|
||
|
* All files in this archive are subject to the GNU General Public License.
|
||
|
* See the file COPYING in the source tree root for full license agreement.
|
||
|
*
|
||
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||
|
* KIND, either express or implied.
|
||
|
*
|
||
|
****************************************************************************/
|
||
|
#ifndef GPIO_TARGET_H
|
||
|
#define GPIO_TARGET_H
|
||
|
|
||
|
#define GPIO_EVENT_MASK (USE_GPIO1_EVENTS)
|
||
|
|
||
|
#define MC13783_GPIO_NUM GPIO1_NUM
|
||
|
#define MC13783_GPIO_ISR GPIO1_ISR
|
||
|
#define MC13783_GPIO_LINE 31
|
||
|
#define MC13783_EVENT_ID 0
|
||
|
|
||
|
#endif /* GPIO_TARGET_H */
|