Line No. | Rev | Author | Line |
---|---|---|---|
1 | 6 | kaklik | /*! \file sta013conf.h \brief STA013 MP3 player driver configuration. */ |
2 | //***************************************************************************** |
||
3 | // |
||
4 | // File Name : 'sta013.h' |
||
5 | // Title : STMicroelectronics STA013 MP3 player driver |
||
6 | // Author : Pascal Stang - Copyright (C) 2000-2002 |
||
7 | // Created : 10/22/2000 |
||
8 | // Revised : 12/04/2000 |
||
9 | // Version : 0.3 |
||
10 | // Target MCU : ATmega103 (should work for Atmel AVR Series) |
||
11 | // Editor Tabs : 4 |
||
12 | // |
||
13 | // NOTE: This code is currently below version 1.0, and therefore is considered |
||
14 | // to be lacking in some functionality or documentation, or may not be fully |
||
15 | // tested. Nonetheless, you can expect most functions to work. |
||
16 | // |
||
17 | // This code is distributed under the GNU Public License |
||
18 | // which can be found at http://www.gnu.org/licenses/gpl.txt |
||
19 | // |
||
20 | //***************************************************************************** |
||
21 | |||
22 | |||
23 | #ifndef STA013CONF_H |
||
24 | #define STA013CONF_H |
||
25 | |||
26 | // STA013 Configuration |
||
27 | |||
28 | // STA013 demand line |
||
29 | #define STA013_DEMAND_PORT PORTE // port to which DEMAND line is connected |
||
30 | #define STA013_DEMAND_PORTIN PINE // input port to which DEMAND line is connected |
||
31 | #define STA013_DEMAND_PIN PE4 // port pin to which DEMAND line is connected |
||
32 | #define STA013_DEMAND_INTR SIG_INTERRUPT4 // interrupt to which DEMAND line is connected |
||
33 | |||
34 | #endif |
Powered by WebSVN v2.8.3