comparison python/stm32f4/stm32f4xx.c3 @ 251:6ed3d3a82a63

Added another c3 example. First import attempt
author Windel Bouwman
date Mon, 29 Jul 2013 20:23:13 +0200
parents
children
comparison
equal deleted inserted replaced
250:f5fba5b554d7 251:6ed3d3a82a63
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