DEV_Config.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 "main.h"
  51. // #include "stm32f1xx_hal.h"
  52. // #include "stm32f1xx_hal_gpio.h"
  53. // #include <stdint.h>
  54. #include "luat_base.h"
  55. #include "luat_gpio.h"
  56. #include "luat_spi.h"
  57. #include "luat_timer.h"
  58. /**
  59. * data
  60. **/
  61. #define UBYTE uint8_t
  62. #define UWORD uint16_t
  63. #define UDOUBLE uint32_t
  64. // #define Pin_BUSY (18)
  65. // #define Pin_RES (7)
  66. // #define Pin_DC (9)
  67. // #define Pin_CS (16)
  68. #define LUAT_EINK_SPI_DEVICE 255
  69. typedef struct eink_conf {
  70. uint8_t spi_id;
  71. uint8_t busy_pin;
  72. uint8_t res_pin;
  73. uint8_t dc_pin;
  74. uint8_t cs_pin;
  75. uint8_t full_mode;
  76. uint8_t port;
  77. void* userdata;
  78. }eink_conf_t;
  79. extern eink_conf_t econf;
  80. /**
  81. * e-Paper GPIO
  82. **/
  83. #define EPD_RST_PIN (econf.res_pin)
  84. #define EPD_DC_PIN (econf.dc_pin)
  85. #define EPD_CS_PIN (econf.cs_pin)
  86. #define EPD_BUSY_PIN (econf.busy_pin)
  87. /**
  88. * GPIO read and write
  89. **/
  90. #define DEV_Digital_Write luat_gpio_set
  91. #define DEV_Digital_Read luat_gpio_get
  92. /**
  93. * delay x ms
  94. **/
  95. #define DEV_Delay_ms(__xms) luat_timer_mdelay(__xms);
  96. void DEV_SPI_WriteByte(UBYTE value);
  97. int DEV_Module_Init(void);
  98. void DEV_Module_Exit(void);
  99. #endif