00001 /*! \file sta013conf.h \brief STA013 MP3 player driver configuration. */ 00002 //***************************************************************************** 00003 // 00004 // File Name : 'sta013.h' 00005 // Title : STMicroelectronics STA013 MP3 player driver 00006 // Author : Pascal Stang - Copyright (C) 2000-2002 00007 // Created : 10/22/2000 00008 // Revised : 12/04/2000 00009 // Version : 0.3 00010 // Target MCU : ATmega103 (should work for Atmel AVR Series) 00011 // Editor Tabs : 4 00012 // 00013 // NOTE: This code is currently below version 1.0, and therefore is considered 00014 // to be lacking in some functionality or documentation, or may not be fully 00015 // tested. Nonetheless, you can expect most functions to work. 00016 // 00017 // This code is distributed under the GNU Public License 00018 // which can be found at http://www.gnu.org/licenses/gpl.txt 00019 // 00020 //***************************************************************************** 00021 00022 00023 #ifndef STA013CONF_H 00024 #define STA013CONF_H 00025 00026 // STA013 Configuration 00027 00028 // STA013 demand line 00029 #define STA013_DEMAND_PORT PORTE // port to which DEMAND line is connected 00030 #define STA013_DEMAND_PORTIN PINE // input port to which DEMAND line is connected 00031 #define STA013_DEMAND_PIN PE4 // port pin to which DEMAND line is connected 00032 #define STA013_DEMAND_INTR SIG_INTERRUPT4 // interrupt to which DEMAND line is connected 00033 00034 #endif