e6dcea8eba1a9324632f0e8148c08f32775f7dfc
[fw/altos] / src / stm32f4-disco / ao_pins.h
1 /*
2  * Copyright © 2018 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, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  */
14 #ifndef _AO_PINS_H_
15 #define _AO_PINS_H_
16
17 /* Clock tree configuration */
18 #define AO_HSE          8000000 /* fed from st/link processor */
19 #define AO_HSE_BYPASS   1       /* no xtal, directly fed */
20
21 #define AO_PLL_M        4       /* down to 2MHz */
22
23 #define AO_PLL1_N       96      /* up to 192MHz */
24 #define AO_PLL1_P       2       /* down to 96MHz */
25 #define AO_PLL1_Q       4       /* down to 48MHz for USB and SDIO */
26
27 #define AO_AHB_PRESCALER        1
28 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
29
30 #define AO_APB1_PRESCALER       1
31 #define AO_RCC_CFGR_PPRE1_DIV   STM_RCC_CFGR_PPRE1_DIV_1
32 #define AO_APB2_PRESCALER       1
33 #define AO_RCC_CFGR_PPRE2_DIV   STM_RCC_CFGR_PPRE2_DIV_1
34
35 #define DEBUG_THE_CLOCK 1
36
37 #define HAS_USB         0
38 #define HAS_BEEP        0
39
40 #define B_USER_PORT     (&stm_gpioa)
41 #define B_USER_PIN      0
42
43 /* LEDs */
44
45 #define HAS_LED         1
46
47 #define LED_0_PORT      (&stm_gpioc)
48 #define LED_0_PIN       5
49 #define LED_GREEN       AO_LED_0
50
51 #define LED_1_PORT      (&stm_gpioe)
52 #define LED_1_PIN       3
53 #define LED_RED         AO_LED_0
54
55 #define AO_LED_PANIC    LED_RED
56
57 /* USART */
58
59 #define HAS_SERIAL_6            1
60 #define SERIAL_6_RX_PORT        (&stm_gpiog)
61 #define SERIAL_6_RX_PIN         9
62
63 #define SERIAL_6_TX_PORT        (&stm_gpiog)
64 #define SERIAL_6_TX_PIN         14
65
66 #define USE_SERIAL_6_STDIN      1
67 #define DELAY_SERIAL_6_STDIN    0
68 #define USE_SERIAL_6_FLOW       0
69 #define USE_SERIAL_6_SW_FLOW    0
70
71 #endif /* _AO_PINS_H_ */