Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
[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        8       /* down to 1MHz */
22
23 #define AO_PLL1_R       2       /* down to 96MHz */
24 #define AO_PLL1_N       192     /* up to 192MHz */
25 #define AO_PLL1_P       2       /* down to 96MHz */
26 #define AO_PLL1_Q       4       /* down to 48MHz for USB and SDIO */
27
28 #define AO_AHB_PRESCALER        1
29 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
30
31 #define AO_APB1_PRESCALER       2
32 #define AO_RCC_CFGR_PPRE1_DIV   STM_RCC_CFGR_PPRE1_DIV_2
33
34 #define AO_APB2_PRESCALER       1
35 #define AO_RCC_CFGR_PPRE2_DIV   STM_RCC_CFGR_PPRE2_DIV_1
36
37 #define DEBUG_THE_CLOCK 1
38
39 #define HAS_BEEP        0
40
41 #define B_USER_PORT     (&stm_gpioa)
42 #define B_USER_PIN      0
43
44 /* LEDs */
45
46 #define HAS_LED         1
47
48 #define LED_0_PORT      (&stm_gpioc)
49 #define LED_0_PIN       5
50 #define LED_GREEN       AO_LED_0
51
52 #define LED_1_PORT      (&stm_gpioe)
53 #define LED_1_PIN       3
54 #define LED_RED         AO_LED_0
55
56 #define AO_LED_PANIC    LED_RED
57
58 #define AO_CMD_LEN      128
59
60 /* USART */
61
62 #define HAS_SERIAL_6            1
63 #define SERIAL_6_RX_PORT        (&stm_gpiog)
64 #define SERIAL_6_RX_PIN         9
65
66 #define SERIAL_6_TX_PORT        (&stm_gpiog)
67 #define SERIAL_6_TX_PIN         14
68
69 #define USE_SERIAL_6_STDIN      1
70 #define DELAY_SERIAL_6_STDIN    0
71 #define USE_SERIAL_6_FLOW       0
72 #define USE_SERIAL_6_SW_FLOW    0
73
74 /* USB */
75
76 #define HAS_USB                 1
77 #define USE_USB_STDIO           0
78
79 #endif /* _AO_PINS_H_ */