DEV_Config.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*****************************************************************************
  2. * | File : DEV_Config.h
  3. * | Author : Waveshare team
  4. * | Function : Hardware underlying interface
  5. * | Info :
  6. * Used to shield the underlying layers of each master
  7. * and enhance portability
  8. *----------------
  9. * | This version: V2.0
  10. * | Date : 2018-10-30
  11. * | Info :
  12. * 1.add:
  13. * UBYTE\UWORD\UDOUBLE
  14. * 2.Change:
  15. * EPD_RST -> EPD_RST_PIN
  16. * EPD_DC -> EPD_DC_PIN
  17. * EPD_CS -> EPD_CS_PIN
  18. * EPD_BUSY -> EPD_BUSY_PIN
  19. * 3.Remote:
  20. * EPD_RST_1\EPD_RST_0
  21. * EPD_DC_1\EPD_DC_0
  22. * EPD_CS_1\EPD_CS_0
  23. * EPD_BUSY_1\EPD_BUSY_0
  24. * 3.add:
  25. * #define DEV_Digital_Write(_pin, _value) bcm2835_gpio_write(_pin, _value)
  26. * #define DEV_Digital_Read(_pin) bcm2835_gpio_lev(_pin)
  27. * #define DEV_SPI_WriteByte(__value) bcm2835_spi_transfer(__value)
  28. #
  29. # Permission is hereby granted, free of charge, to any person obtaining a copy
  30. # of this software and associated documnetation files (the "Software"), to deal
  31. # in the Software without restriction, including without limitation the rights
  32. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  33. # copies of the Software, and to permit persons to whom the Software is
  34. # furished to do so, subject to the following conditions:
  35. #
  36. # The above copyright notice and this permission notice shall be included in
  37. # all copies or substantial portions of the Software.
  38. #
  39. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  40. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  41. # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  42. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  43. # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  44. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  45. # THE SOFTWARE.
  46. #
  47. ******************************************************************************/
  48. #ifndef _DEV_CONFIG_H_
  49. #define _DEV_CONFIG_H_
  50. #include <bcm2835.h>
  51. #include <stdint.h>
  52. #include <stdio.h>
  53. /**
  54. * data
  55. **/
  56. #define UBYTE uint8_t
  57. #define UWORD uint16_t
  58. #define UDOUBLE uint32_t
  59. /**
  60. * GPIO config
  61. **/
  62. #define EPD_RST_PIN 17
  63. #define EPD_DC_PIN 25
  64. #define EPD_CS_PIN 8
  65. #define EPD_BUSY_PIN 24
  66. /**
  67. * GPIO read and write
  68. **/
  69. #define DEV_Digital_Write(_pin, _value) bcm2835_gpio_write(_pin, _value)
  70. #define DEV_Digital_Read(_pin) bcm2835_gpio_lev(_pin)
  71. /**
  72. * SPI
  73. **/
  74. #define DEV_SPI_WriteByte(__value) bcm2835_spi_transfer(__value)
  75. /**
  76. * delay x ms
  77. **/
  78. #define DEV_Delay_ms(__xms) bcm2835_delay(__xms)
  79. /*------------------------------------------------------------------------------------------------------*/
  80. UBYTE DEV_ModuleInit(void);
  81. void DEV_ModuleExit(void);
  82. #endif