Mercurial > lcfOS
annotate test/c3examples/stm32f4xx.c3 @ 293:6aa721e7b10b
Try to improve build sequence
author | Windel Bouwman |
---|---|
date | Thu, 28 Nov 2013 20:39:37 +0100 |
parents | d9df72971cbf |
children |
rev | line source |
---|---|
251 | 1 |
286 | 2 module stm32f4xx; |
251 | 3 |
4 type struct { | |
5 int MODER; | |
6 int OTYPER; | |
7 int OSPEEDR; | |
8 int PUPDR; | |
9 int IDR; | |
10 int ODR; | |
11 }* GPIO_Type; | |
12 | |
13 type struct { | |
14 int CR; | |
15 int PLLCFGR; | |
16 int CFGR; | |
17 int CIR; | |
18 int AHB1RSTR; | |
19 int AHB2RSTR; | |
20 int AHB3RSTR; | |
21 int reserved0; | |
22 int APB1RSTR; | |
23 int APB2RSTR; | |
24 int reserved1a, reserved1b; | |
25 int AHB1ENR; | |
26 int AHB2ENR; | |
27 int AHB3ENR; | |
28 int reserved2; | |
29 int APB1ENR, APB2ENR; | |
30 }* RCC_Type; | |
31 |