altos: Add bit-bang i2c driver
[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
24 #define IS_FLASH_LOADER 0
25
26 #define AO_POWER_MANAGEMENT     1
27
28 /* 48MHz clock based on USB */
29 #define AO_HSI48        1
30
31 /* HCLK = 48MHz */
32 #define AO_AHB_PRESCALER        1
33 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
34
35 /* APB = 48MHz */
36 #define AO_APB_PRESCALER        1
37 #define AO_RCC_CFGR_PPRE_DIV    STM_RCC_CFGR_PPRE_DIV_1
38
39 #define HAS_EEPROM              0
40 #define USE_INTERNAL_FLASH      0
41 #define USE_STORAGE_CONFIG      0
42 #define USE_EEPROM_CONFIG       0
43
44 #define HAS_BEEP                0
45
46 #define HAS_USB                 1
47 #define AO_USB_DIRECTIO         0
48 #define AO_PA11_PA12_RMP        1
49
50 #define HAS_SPI_0               0
51
52 #define LOW_LEVEL_DEBUG         0
53
54 #define HAS_SERIAL_2            1
55 #define USE_SERIAL_2_STDIN      0
56 #define SERIAL_2_PA2_PA3        1
57 #define SERIAL_2_SWAP           0
58 #define USE_SERIAL_2_FLOW       0
59 #define USE_SERIAL_2_SW_FLOW    0
60
61 #define ao_up_getchar           ao_serial2_getchar
62 #define ao_up_putchar           ao_serial2_putchar
63 #define _ao_up_pollchar         _ao_serial2_pollchar
64 #define ao_up_set_speed         ao_serial2_set_speed
65
66 #endif /* _AO_PINS_H_ */