sys.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef _GB_SYS_H_
  2. #define _GB_SYS_H_
  3. #define BITBAND(addr, bitnum) ((addr & 0xF0000000)+0x2000000+((addr &0xFFFFF)<<5)+(bitnum<<2))
  4. #define MEM_ADDR(addr) *((volatile unsigned long *)(addr))
  5. #define BIT_ADDR(addr, bitnum) MEM_ADDR(BITBAND(addr, bitnum))
  6. //IO口地址映射
  7. #define GPIOA_ODR_Addr (GPIOA_BASE+12) //0x4001080C
  8. #define GPIOB_ODR_Addr (GPIOB_BASE+12) //0x40010C0C
  9. #define GPIOC_ODR_Addr (GPIOC_BASE+12) //0x4001100C
  10. #define GPIOD_ODR_Addr (GPIOD_BASE+12) //0x4001140C
  11. #define GPIOE_ODR_Addr (GPIOE_BASE+12) //0x4001180C
  12. #define GPIOF_ODR_Addr (GPIOF_BASE+12) //0x40011A0C
  13. #define GPIOG_ODR_Addr (GPIOG_BASE+12) //0x40011E0C
  14. #define GPIOA_IDR_Addr (GPIOA_BASE+8) //0x40010808
  15. #define GPIOB_IDR_Addr (GPIOB_BASE+8) //0x40010C08
  16. #define GPIOC_IDR_Addr (GPIOC_BASE+8) //0x40011008
  17. #define GPIOD_IDR_Addr (GPIOD_BASE+8) //0x40011408
  18. #define GPIOE_IDR_Addr (GPIOE_BASE+8) //0x40011808
  19. #define GPIOF_IDR_Addr (GPIOF_BASE+8) //0x40011A08
  20. #define GPIOG_IDR_Addr (GPIOG_BASE+8) //0x40011E08
  21. //IO口操作,只对单一的IO口!
  22. //确保n的值小于16!
  23. #define PAout(n) BIT_ADDR(GPIOA_ODR_Addr,n) //输出
  24. #define PAin(n) BIT_ADDR(GPIOA_IDR_Addr,n) //输入
  25. #define PBout(n) BIT_ADDR(GPIOB_ODR_Addr,n) //输出
  26. #define PBin(n) BIT_ADDR(GPIOB_IDR_Addr,n) //输入
  27. #define PCout(n) BIT_ADDR(GPIOC_ODR_Addr,n) //输出
  28. #define PCin(n) BIT_ADDR(GPIOC_IDR_Addr,n) //输入
  29. #define PDout(n) BIT_ADDR(GPIOD_ODR_Addr,n) //输出
  30. #define PDin(n) BIT_ADDR(GPIOD_IDR_Addr,n) //输入
  31. #define PEout(n) BIT_ADDR(GPIOE_ODR_Addr,n) //输出
  32. #define PEin(n) BIT_ADDR(GPIOE_IDR_Addr,n) //输入
  33. #define PFout(n) BIT_ADDR(GPIOF_ODR_Addr,n) //输出
  34. #define PFin(n) BIT_ADDR(GPIOF_IDR_Addr,n) //输入
  35. #define PGout(n) BIT_ADDR(GPIOG_ODR_Addr,n) //输出
  36. #define PGin(n) BIT_ADDR(GPIOG_IDR_Addr,n) //输入
  37. #endif