Mercurial > lcfOS
annotate python/stm32f4/stm32f4xx.c3 @ 254:bd26dc13f270
Added logger
author | Windel Bouwman |
---|---|
date | Wed, 31 Jul 2013 21:20:58 +0200 |
parents | 6ed3d3a82a63 |
children |
rev | line source |
---|---|
251 | 1 |
2 package stm32f4xx; | |
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 |