altos/mpusb-v3.0: Make it compile again
[fw/altos] / src / mpusb-v3.0 / ao_pins.h
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 /* Using TeleMetrum v1.9 board */
19
20 #ifndef _AO_PINS_H_
21 #define _AO_PINS_H_
22
23 #define HAS_TASK_QUEUE          1
24
25 #define IS_FLASH_LOADER 0
26
27 #define AO_POWER_MANAGEMENT     1
28
29 /* 48MHz clock based on USB */
30 #define AO_HSI48        1
31
32 /* HCLK = 48MHz */
33 #define AO_AHB_PRESCALER        1
34 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
35
36 /* APB = 48MHz */
37 #define AO_APB_PRESCALER        1
38 #define AO_RCC_CFGR_PPRE_DIV    STM_RCC_CFGR_PPRE_DIV_1
39
40 #define HAS_EEPROM              0
41 #define USE_INTERNAL_FLASH      0
42 #define USE_STORAGE_CONFIG      0
43 #define USE_EEPROM_CONFIG       0
44
45 #define HAS_BEEP                0
46
47 #define HAS_USB                 1
48 #define AO_USB_DIRECTIO         0
49 #define AO_PA11_PA12_RMP        1
50
51 #define HAS_SPI_0               0
52
53 #define LOW_LEVEL_DEBUG         0
54
55 #define HAS_SERIAL_2            1
56 #define USE_SERIAL_2_STDIN      0
57 #define SERIAL_2_PA2_PA3        1
58 #define SERIAL_2_SWAP           0
59 #define USE_SERIAL_2_FLOW       0
60 #define USE_SERIAL_2_SW_FLOW    0
61
62 #define ao_up_getchar           ao_serial2_getchar
63 #define ao_up_putchar           ao_serial2_putchar
64 #define _ao_up_pollchar         _ao_serial2_pollchar
65 #define ao_up_set_speed         ao_serial2_set_speed
66
67 #endif /* _AO_PINS_H_ */