f1.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * stm32/f1.h
  3. *
  4. * Core and peripheral registers.
  5. *
  6. * Written & released by Keir Fraser <keir.xen@gmail.com>
  7. *
  8. * This is free and unencumbered software released into the public domain.
  9. * See the file COPYING for more details, or visit <http://unlicense.org>.
  10. */
  11. /* C pointer types */
  12. #define BKP volatile struct bkp * const
  13. #define AFIO volatile struct afio * const
  14. #define DMA_CHN volatile struct dma_chn * const
  15. /* C-accessible registers. */
  16. static STK stk = (struct stk *)STK_BASE;
  17. static SCB scb = (struct scb *)SCB_BASE;
  18. static NVIC nvic = (struct nvic *)NVIC_BASE;
  19. static DBG dbg = (struct dbg *)DBG_BASE;
  20. static FLASH flash = (struct flash *)FLASH_BASE;
  21. static PWR pwr = (struct pwr *)PWR_BASE;
  22. static BKP bkp = (struct bkp *)BKP_BASE;
  23. static RCC rcc = (struct rcc *)RCC_BASE;
  24. static IWDG iwdg = (struct iwdg *)IWDG_BASE;
  25. static GPIO gpioa = (struct gpio *)GPIOA_BASE;
  26. static GPIO gpiob = (struct gpio *)GPIOB_BASE;
  27. static GPIO gpioc = (struct gpio *)GPIOC_BASE;
  28. static GPIO gpiod = (struct gpio *)GPIOD_BASE;
  29. static GPIO gpioe = (struct gpio *)GPIOE_BASE;
  30. static GPIO gpiof = (struct gpio *)GPIOF_BASE;
  31. static GPIO gpiog = (struct gpio *)GPIOG_BASE;
  32. static AFIO afio = (struct afio *)AFIO_BASE;
  33. static EXTI exti = (struct exti *)EXTI_BASE;
  34. static DMA dma1 = (struct dma *)DMA1_BASE;
  35. static DMA dma2 = (struct dma *)DMA2_BASE;
  36. static TIM tim1 = (struct tim *)TIM1_BASE;
  37. static TIM tim2 = (struct tim *)TIM2_BASE;
  38. static TIM tim3 = (struct tim *)TIM3_BASE;
  39. static TIM tim4 = (struct tim *)TIM4_BASE;
  40. static TIM tim5 = (struct tim *)TIM5_BASE;
  41. static TIM tim6 = (struct tim *)TIM6_BASE;
  42. static TIM tim7 = (struct tim *)TIM7_BASE;
  43. static SPI spi1 = (struct spi *)SPI1_BASE;
  44. static SPI spi2 = (struct spi *)SPI2_BASE;
  45. static SPI spi3 = (struct spi *)SPI3_BASE;
  46. static I2C i2c1 = (struct i2c *)I2C1_BASE;
  47. static I2C i2c2 = (struct i2c *)I2C2_BASE;
  48. static USART usart1 = (struct usart *)USART1_BASE;
  49. static USART usart2 = (struct usart *)USART2_BASE;
  50. static USART usart3 = (struct usart *)USART3_BASE;
  51. static SER_ID ser_id = (uint32_t *)0x1ffff7e8;
  52. #define SYSCLK_MHZ 72
  53. #define FLASH_PAGE_SIZE 1024
  54. /* No delay required after enabling a peripheral clock, before accessing it. */
  55. #define peripheral_clock_delay() ((void)0)
  56. /*
  57. * Local variables:
  58. * mode: C
  59. * c-file-style: "Linux"
  60. * c-basic-offset: 4
  61. * tab-width: 4
  62. * indent-tabs-mode: nil
  63. * End:
  64. */