led_controller.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. Copyright 2016 flabbergast <s3+flabbergast@sdfeu.org>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #ifndef _LED_CONTROLLER_H_
  15. #define _LED_CONTROLLER_H_
  16. /* =========================
  17. * communication functions
  18. * ========================= */
  19. msg_t is31_write_data(uint8_t page, uint8_t *buffer, uint8_t size);
  20. msg_t is31_write_register(uint8_t page, uint8_t reg, uint8_t data);
  21. msg_t is31_read_register(uint8_t page, uint8_t reg, uint8_t *result);
  22. /* ============================
  23. * init functions/definitions
  24. * ============================*/
  25. void led_controller_init(void);
  26. #define CAPS_LOCK_LED_ADDRESS 46 //pin matrix location
  27. #define NUM_LOCK_LED_ADDRESS 85
  28. #define BACKLIGHT_OFF_LOCK_LED_OFF 0 //set to 0 to show lock leds even if backlight off
  29. /* =============================
  30. * IS31 chip related definitions
  31. * ============================= */
  32. #define IS31_ADDR_DEFAULT 0x74
  33. #define IS31_REG_CONFIG 0x00
  34. // bits in reg
  35. #define IS31_REG_CONFIG_PICTUREMODE 0x00
  36. #define IS31_REG_CONFIG_AUTOPLAYMODE 0x08
  37. #define IS31_REG_CONFIG_AUDIOPLAYMODE 0x18
  38. // D2:D0 bits are starting frame for autoplay mode
  39. #define IS31_REG_PICTDISP 0x01 // D2:D0 frame select for picture mode
  40. #define IS31_REG_AUTOPLAYCTRL1 0x02
  41. // D6:D4 number of loops (000=infty)
  42. // D2:D0 number of frames to be used
  43. #define IS31_REG_AUTOPLAYCTRL2 0x03 // D5:D0 delay time (*11ms)
  44. #define IS31_REG_DISPLAYOPT 0x05
  45. #define IS31_REG_DISPLAYOPT_INTENSITY_SAME 0x20 // same intensity for all frames
  46. #define IS31_REG_DISPLAYOPT_BLINK_ENABLE 0x8
  47. // D2:D0 bits blink period time (*0.27s)
  48. #define IS31_REG_AUDIOSYNC 0x06
  49. #define IS31_REG_AUDIOSYNC_ENABLE 0x1
  50. #define IS31_REG_FRAMESTATE 0x07
  51. #define IS31_REG_BREATHCTRL1 0x08
  52. // D6:D4 fade out time (26ms*2^i)
  53. // D2:D0 fade in time (26ms*2^i)
  54. #define IS31_REG_BREATHCTRL2 0x09
  55. #define IS31_REG_BREATHCTRL2_ENABLE 0x10
  56. // D2:D0 extinguish time (3.5ms*2^i)
  57. #define IS31_REG_SHUTDOWN 0x0A
  58. #define IS31_REG_SHUTDOWN_ON 0x1
  59. #define IS31_REG_AGCCTRL 0x0B
  60. #define IS31_REG_ADCRATE 0x0C
  61. #define IS31_COMMANDREGISTER 0xFD
  62. #define IS31_FUNCTIONREG 0x0B // helpfully called 'page nine'
  63. #define IS31_TIMEOUT 10000 // needs to be long enough to write a whole page
  64. /* ========================================
  65. * LED Thread related functions/definitions
  66. * ========================================*/
  67. extern mailbox_t led_mailbox;
  68. void set_led_bit (uint8_t page, uint8_t *led_control_reg, uint8_t led_addr, uint8_t action);
  69. void set_lock_leds (uint8_t lock_type, uint8_t led_on);
  70. void write_led_page (uint8_t page, uint8_t *led_array, uint8_t led_count);
  71. // constants for signaling the LED controller thread
  72. enum led_msg_t {
  73. KEY_LIGHT,
  74. OFF_LED,
  75. ON_LED,
  76. TOGGLE_LED,
  77. TOGGLE_ALL,
  78. TOGGLE_BACKLIGHT,
  79. DISPLAY_PAGE,
  80. RESET_PAGE,
  81. TOGGLE_NUM_LOCK,
  82. TOGGLE_CAPS_LOCK,
  83. MODE_BREATH,
  84. STEP_BRIGHTNESS
  85. };
  86. #endif /* _LED_CONTROLLER_H_ */