b232f373db699ba37bba2b62b0aa358319fbdd1a
[fw/altos] / src / stm-flash / ao_pins.h
1 /*
2  * Copyright © 2013 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 #ifndef _AO_PINS_H_
19 #define _AO_PINS_H_
20
21 #define HAS_TASK_QUEUE          0
22
23 #define AO_HSE                  8000000
24
25 /* PLLVCO = 96MHz (so that USB will work) */
26 #define AO_PLLMUL               12
27 #define AO_RCC_CFGR_PLLMUL      (STM_RCC_CFGR_PLLMUL_12)
28
29 /* SYSCLK = 32MHz */
30 #define AO_PLLDIV               3
31 #define AO_RCC_CFGR_PLLDIV      (STM_RCC_CFGR_PLLDIV_3)
32
33 /* HCLK = 32MHZ (CPU clock) */
34 #define AO_AHB_PRESCALER        1
35 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
36
37 /* Run APB1 at HCLK/1 */
38 #define AO_APB1_PRESCALER       1
39 #define AO_RCC_CFGR_PPRE1_DIV   STM_RCC_CFGR_PPRE2_DIV_1
40
41 /* Run APB2 at HCLK/1 */
42 #define AO_APB2_PRESCALER       1
43 #define AO_RCC_CFGR_PPRE2_DIV   STM_RCC_CFGR_PPRE2_DIV_1
44
45 #define HAS_USB                 1
46 #define USE_USB_STDIN           1
47 #define HAS_BEEP                0
48
49 #define PACKET_HAS_SLAVE        0
50
51 #define LED_PORT_ENABLE         STM_RCC_AHBENR_GPIOCEN
52 #define LED_PORT                (&stm_gpioc)
53 #define LED_PIN_RED             8
54 #define LED_PIN_GREEN           9
55 #define AO_LED_RED              (1 << LED_PIN_RED)
56 #define AO_LED_GREEN            (1 << LED_PIN_GREEN)
57
58 #define LEDS_AVAILABLE          (AO_LED_RED | AO_LED_GREEN)
59
60 #define AO_TICK_TYPE            uint32_t
61 #define AO_TICK_SIGNED          int32_t
62
63 #define HAS_TASK_INFO           0
64
65 #define AO_BOOT_APPLICATION_GPIO        stm_gpiob
66 #define AO_BOOT_APPLICATION_PIN         5
67 #define AO_BOOT_APPLICATION_VALUE       0
68 #define AO_BOOT_APPLICATION_MODE        AO_EXTI_MODE_PULL_UP
69 #define AO_BOOT_APPLICATION_BASE        0x2000
70
71 #endif /* _AO_PINS_H_ */