altos/stmf0: Initialize UART RTS/CTS before turning it on
[fw/altos] / src / micropeak-v2.0 / ao_pins.h
1 /*
2  * Copyright © 2011 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 extern uint8_t ao_on_battery;
22
23 #define AO_SYSCLK       (ao_on_battery ? STM_HSI_FREQ : 48000000)
24
25 #define LED_PORT_ENABLE STM_RCC_AHBENR_IOPAEN
26 #define LED_PORT        (&stm_gpioa)
27 #define LED_PIN_ORANGE  2
28 #define AO_LED_ORANGE   (1 << LED_PIN_ORANGE)
29 #define AO_LED_REPORT   AO_LED_ORANGE
30 #define AO_LED_PANIC    AO_LED_ORANGE
31
32 #define LEDS_AVAILABLE  (AO_LED_ORANGE)
33
34 #define AO_POWER_MANAGEMENT     0
35
36 /* 48MHz clock based on USB */
37 #define AO_HSI48        1
38 /* Need HSI running to flash */
39 #define AO_NEED_HSI     1
40
41 /* HCLK = 12MHz usb / 2MHz battery */
42 #define AO_AHB_PRESCALER        (ao_on_battery ? 16 : 1)
43 #define AO_RCC_CFGR_HPRE_DIV    (ao_on_battery ? STM_RCC_CFGR_HPRE_DIV_16 : STM_RCC_CFGR_HPRE_DIV_1)
44
45 /* APB = 12MHz usb / 2MHz battery */
46 #define AO_APB_PRESCALER        1
47 #define AO_RCC_CFGR_PPRE_DIV    STM_RCC_CFGR_PPRE_DIV_1
48
49 #define HAS_USB                 1
50 #define AO_PA11_PA12_RMP        1
51
52 #define PACKET_HAS_SLAVE        0
53 #define HAS_SERIAL_1            0
54 #define HAS_SERIAL_2            1
55 #define USE_SERIAL_2_STDIN      0
56 #define USE_SERIAL_2_FLOW       0
57 #define USE_SERIAL_2_SW_FLOW    0
58 #define SERIAL_2_PA2_PA3        1
59 #define SERIAL_2_PA14_PA15      0
60 #define USE_SERIAL2_FLOW        0
61 #define USE_SERIAL2_SW_FLOW     0
62
63 #define IS_FLASH_LOADER         0
64
65 #define HAS_MS5607              1
66 #define HAS_MS5611              0
67 #define HAS_MS5607_TASK         0
68 #define HAS_EEPROM              0
69 #define HAS_BEEP                0
70
71 /* Logging */
72 #define LOG_INTERVAL            1
73 #define SAMPLE_SLEEP            AO_MS_TO_TICKS(100)
74 #define BOOST_DELAY             AO_SEC_TO_TICKS(60)
75 #define AO_LOG_ID               AO_LOG_ID_MICRO_PEAK2
76
77 /* Kalman filter */
78
79 #define AO_MK_STEP_100MS        1
80 #define AO_MK_STEP_96MS         0
81
82 /* SPI */
83 #define HAS_SPI_1               1
84 #define SPI_1_PA5_PA6_PA7       1
85 #define SPI_1_PB3_PB4_PB5       0
86 #define SPI_1_OSPEEDR           STM_OSPEEDR_MEDIUM
87
88 #define HAS_SPI_2               0
89
90 /* MS5607 */
91 #define HAS_MS5607              1
92 #define HAS_MS5611              0
93 #define AO_MS5607_PRIVATE_PINS  0
94 #define AO_MS5607_CS_PORT       (&stm_gpioa)
95 #define AO_MS5607_CS_PIN        4
96 #define AO_MS5607_CS_MASK       (1 << AO_MS5607_CS_PIN)
97 #define AO_MS5607_MISO_PORT     (&stm_gpioa)
98 #define AO_MS5607_MISO_PIN      6
99 #define AO_MS5607_MISO_MASK     (1 << AO_MS5607_MISO_PIN)
100 #define AO_MS5607_SPI_INDEX     AO_SPI_1_PA5_PA6_PA7
101
102 typedef int32_t alt_t;
103
104 #define AO_ALT_VALUE(x)         ((x) * (alt_t) 10)
105
106 #define AO_DATA_RING            32
107
108 #define HAS_ADC                 0
109
110 static inline void
111 ao_power_off(void) __attribute((noreturn));
112
113 static inline void
114 ao_power_off(void) {
115         for (;;) {
116         }
117 }
118
119 extern alt_t ao_max_height;
120
121 void ao_delay_until(uint16_t target);
122
123 #define ao_async_stop() do {                                    \
124                 ao_serial2_drain();                             \
125                 stm_moder_set(&stm_gpioa, 2, STM_MODER_OUTPUT); \
126         } while (0)
127
128 #define ao_async_start() do {                                           \
129                 stm_moder_set(&stm_gpioa, 2, STM_MODER_ALTERNATE);      \
130                 ao_delay(AO_MS_TO_TICKS(100));                          \
131         } while (0)
132
133 #define ao_async_byte(b) ao_serial2_putchar((char) (b))
134
135 #define ao_eeprom_read(pos, ptr, size) ao_storage_read(pos, ptr, size)
136 #define ao_eeprom_write(pos, ptr, size) ao_storage_write(pos, ptr, size)
137 #define MAX_LOG_OFFSET  ao_storage_total
138
139 extern uint32_t __flash__[];
140 extern uint32_t __flash_end__[];
141
142 #define AO_BOOT_APPLICATION_BOUND       ((uint32_t *) __flash__)
143 #define USE_STORAGE_CONFIG      0
144
145 #endif /* _AO_PINS_H_ */