1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * stm32/f1.h
- *
- * Core and peripheral registers.
- *
- * Written & released by Keir Fraser <keir.xen@gmail.com>
- *
- * This is free and unencumbered software released into the public domain.
- * See the file COPYING for more details, or visit <http://unlicense.org>.
- */
- #define CORTEX_M3 1
- /* C pointer types */
- #define BKP volatile struct bkp * const
- #define AFIO volatile struct afio * const
- #define DMA_CHN volatile struct dma_chn * const
- /* C-accessible registers. */
- static STK stk = (struct stk *)STK_BASE;
- static SCB scb = (struct scb *)SCB_BASE;
- static NVIC nvic = (struct nvic *)NVIC_BASE;
- static DBG dbg = (struct dbg *)DBG_BASE;
- static FLASH flash = (struct flash *)FLASH_BASE;
- static PWR pwr = (struct pwr *)PWR_BASE;
- static BKP bkp = (struct bkp *)BKP_BASE;
- static RCC rcc = (struct rcc *)RCC_BASE;
- static IWDG iwdg = (struct iwdg *)IWDG_BASE;
- static GPIO gpioa = (struct gpio *)GPIOA_BASE;
- static GPIO gpiob = (struct gpio *)GPIOB_BASE;
- static GPIO gpioc = (struct gpio *)GPIOC_BASE;
- static GPIO gpiod = (struct gpio *)GPIOD_BASE;
- static GPIO gpioe = (struct gpio *)GPIOE_BASE;
- static GPIO gpiof = (struct gpio *)GPIOF_BASE;
- static GPIO gpiog = (struct gpio *)GPIOG_BASE;
- static AFIO afio = (struct afio *)AFIO_BASE;
- static EXTI exti = (struct exti *)EXTI_BASE;
- static DMA dma1 = (struct dma *)DMA1_BASE;
- static DMA dma2 = (struct dma *)DMA2_BASE;
- static TIM tim1 = (struct tim *)TIM1_BASE;
- static TIM tim2 = (struct tim *)TIM2_BASE;
- static TIM tim3 = (struct tim *)TIM3_BASE;
- static TIM tim4 = (struct tim *)TIM4_BASE;
- static TIM tim5 = (struct tim *)TIM5_BASE;
- static TIM tim6 = (struct tim *)TIM6_BASE;
- static TIM tim7 = (struct tim *)TIM7_BASE;
- static SPI spi1 = (struct spi *)SPI1_BASE;
- static SPI spi2 = (struct spi *)SPI2_BASE;
- static SPI spi3 = (struct spi *)SPI3_BASE;
- static I2C i2c1 = (struct i2c *)I2C1_BASE;
- static I2C i2c2 = (struct i2c *)I2C2_BASE;
- static USART usart1 = (struct usart *)USART1_BASE;
- static USART usart2 = (struct usart *)USART2_BASE;
- static USART usart3 = (struct usart *)USART3_BASE;
- static SER_ID ser_id = (uint32_t *)0x1ffff7e8;
- #define SYSCLK_MHZ 72
- #define AHB_MHZ 72
- #define APB1_MHZ 36
- #define APB2_MHZ 72
- #define FLASH_PAGE_SIZE 1024
- /* No delay required after enabling a peripheral clock, before accessing it. */
- #define peripheral_clock_delay() ((void)0)
- /* No secondary RAM region */
- #define section_ext_ram
- extern unsigned int sram_kb;
- enum {
- F1SM_basic = 0,
- F1SM_plus,
- F1SM_plus_unbuffered,
- };
- /*
- * Local variables:
- * mode: C
- * c-file-style: "Linux"
- * c-basic-offset: 4
- * tab-width: 4
- * indent-tabs-mode: nil
- * End:
- */
|