Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sleep_led.c 4.6KB

Squashed 'tmk_core/' changes from 57d27a8..08ce4c3 08ce4c3 Add update for chibios in README 30cac1d Merge remote-tracking branch 'flabbergast-tmk_keyboard/chibios' f218a38 core: Remove unused warning. Fix tmk_keyboard/#293 3e68807 Chibios: add more guards for transmitting (fix a deadlock bug). cecc807 core: Speed up compilation d01d959 Merge remote-tracking branch 'upstream/master' into chibios 8ff12ae Merge pull request #230 from jerryen/master 3afb83d core: Add note about sudo and git 2525d5d Chibios: Update to new USB API. 2fc5cd6 Merge branch 'master' into chibios 6f5511a core: Fix variable initialize 02a15fa core: Fix variable init and header include 1833ca1 Merge pull request #292 from obones/command_warning bc9dc6f Merge pull request #294 from shayneholmes/fix-debug-message c1b891b Merge pull request #295 from doopai/master 1da837c core: Add macro commands SM(), RM() and CM() d9d5a93 Add support for storing, restoring and clearing modifiers in macros 4f371c0 core: Add dfu-programmer example to doc/build.md ba3792e core: Fix doc/build.md 4b99fed remove SERIAL_SOFT_DEBUG macro 984accb Fix typo in bootmagic debug message 67a7ea1 usb_usb: Fix for keymap editor 2fc9ae4 host_driver is only used if KEYBOARD_LOCK_ENABLE is defined a35cdea Chibios: add 'core/protocol' to the makefiles' search path. 5ed2fd6 Merge remote-tracking branch 'upstream/master' into chibios bbc4851 Do timeout when writing to CONSOLE EP queue. 2450559 Remove an errant comma trailing the KC_ERAS macro alias 8465747 Merge pull request #270 from jeffgran/single-tap-toggle a37339a Merge pull request #271 from jeffgran/default-layer-toggle 8e732f7 core: Update doc/build.md and remove other_projects.md e47dc15 Workaround for compiler warnings when console disabled. 4184c52 Add maple mini code. b555238 core: Fix rules.mk for dfu target 26dacf4 add ACTION_DEFAULT_LAYER_TOGGLE to toggle a default layer on/off 83607d9 enable TAPPING_TOGGLE=1 to work correctly bef3089 Merge branch 'master' into chibios f7a55fd core: Fix debug print of usb_hid 1402f7d core: Add keycode KC_JPY for JIS 8e3a460 Chibios: Remove the wait in the main loop. 7d41746 ChibiOS: prettify/document sleep_led code. 235cdee ChibiOS: Update infinity bootloader code to match updated ChibiOS. 807bf1e Chibios: Add breathing sleep LED on Kinetis MCUs. ba3bf7c ChibiOS: make reset request more CMSISy. bf2ffd4 Add correct chibios/bootloader_jump for infinity KB. f5e03fd Chibios/usb_main: rename a variable for clarity. 63a330c Fix drop key stroke d8f5b06 Fix report size of boot protocol. 38abb50 ChibiOS/STM32: send remote wakeup. 6725650 ChibiOS/kinetis: sending remote wakeup. 69f6e54 Chibios: use WFI in idle. WIP suspend stuff. 02f044b Move chibios/cortex selection to local Makefiles. fa59dfa Rename chibios example keyboard. 5c060de Add eeprom support for chibios/kinetis. efd0044 Move declaration of keymap_config. 7196b24 Make bootmagic.c code portable (_delay_ms -> wait_ms). 37b15b2 Add missing #include to keymap.c. 31316e3 Merge branch 'master' into chibios 166f312 Fix chibios/usb_main GET_REPORT handing. 57ac6c2 Add ARM Teensies bootloader code. 1758086 Move STM32 bootloader address config to separate .h file. 03bb026 Rename some Makefile defines. 76ba6ac NKRO fixes. 06498f8 Update chibios README. db0a4f5 Add basic sleep_led for chibios. c3f930e Move AVR specific sleep_led.c into avr. 4069494 Fix bootloader-jump compiling. 9117f7b Small updates. 269cb85 Implement jump-to-bootloader. 7e81b34 Move chibios to tool. 923a892 Make usb_main more USB_DRIVER #define independent. aa054f0 Add ChibiOS support (USB stack + support files). 1e3e282 Modularity and gcc warnings fixes. 2f60ce0 Add KEYBOARD_LOCK_ENABLE to makefile git-subtree-dir: tmk_core git-subtree-split: 08ce4c3021d2ecd446c5b9a137aded65423d241e
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. #include "ch.h"
  2. #include "hal.h"
  3. #include "led.h"
  4. #include "sleep_led.h"
  5. #if defined(KL2x) || defined(K20x) /* platform selection: familiar Kinetis chips */
  6. /* All right, we go the "software" way: LP timer, toggle LED in interrupt.
  7. * Based on hasu's code for AVRs.
  8. */
  9. /* Breathing Sleep LED brighness(PWM On period) table
  10. * (64[steps] * 4[duration]) / 64[PWM periods/s] = 4 second breath cycle
  11. *
  12. * http://www.wolframalpha.com/input/?i=%28sin%28+x%2F64*pi%29**8+*+255%2C+x%3D0+to+63
  13. * (0..63).each {|x| p ((sin(x/64.0*PI)**8)*255).to_i }
  14. */
  15. static const uint8_t breathing_table[64] = {
  16. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 4, 6, 10,
  17. 15, 23, 32, 44, 58, 74, 93, 113, 135, 157, 179, 199, 218, 233, 245, 252,
  18. 255, 252, 245, 233, 218, 199, 179, 157, 135, 113, 93, 74, 58, 44, 32, 23,
  19. 15, 10, 6, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  20. };
  21. /* Low Power Timer interrupt handler */
  22. OSAL_IRQ_HANDLER(KINETIS_LPTMR0_IRQ_VECTOR) {
  23. OSAL_IRQ_PROLOGUE();
  24. /* Software PWM
  25. * timer:1111 1111 1111 1111
  26. * \_____/\/ \_______/____ count(0-255)
  27. * \ \______________ duration of step(4)
  28. * \__________________ index of step table(0-63)
  29. */
  30. // this works for cca 65536 irqs/sec
  31. static union {
  32. uint16_t row;
  33. struct {
  34. uint8_t count:8;
  35. uint8_t duration:2;
  36. uint8_t index:6;
  37. } pwm;
  38. } timer = { .row = 0 };
  39. timer.row++;
  40. // LED on
  41. if (timer.pwm.count == 0) {
  42. led_set(1<<USB_LED_CAPS_LOCK);
  43. }
  44. // LED off
  45. if (timer.pwm.count == breathing_table[timer.pwm.index]) {
  46. led_set(0);
  47. }
  48. /* Reset the counter */
  49. LPTMR0->CSR |= LPTMRx_CSR_TCF;
  50. OSAL_IRQ_EPILOGUE();
  51. }
  52. /* LPTMR clock options */
  53. #define LPTMR_CLOCK_MCGIRCLK 0 /* 4MHz clock */
  54. #define LPTMR_CLOCK_LPO 1 /* 1kHz clock */
  55. #define LPTMR_CLOCK_ERCLK32K 2 /* external 32kHz crystal */
  56. #define LPTMR_CLOCK_OSCERCLK 3 /* output from OSC */
  57. /* Work around inconsistencies in Freescale naming */
  58. #if !defined(SIM_SCGC5_LPTMR)
  59. #define SIM_SCGC5_LPTMR SIM_SCGC5_LPTIMER
  60. #endif
  61. /* Initialise the timer */
  62. void sleep_led_init(void) {
  63. /* Make sure the clock to the LPTMR is enabled */
  64. SIM->SCGC5 |= SIM_SCGC5_LPTMR;
  65. /* Reset LPTMR settings */
  66. LPTMR0->CSR = 0;
  67. /* Set the compare value */
  68. LPTMR0->CMR = 0; // trigger on counter value (i.e. every time)
  69. /* Set up clock source and prescaler */
  70. /* Software PWM
  71. * ______ ______ __
  72. * | ON |___OFF___| ON |___OFF___| ....
  73. * |<-------------->|<-------------->|<- ....
  74. * PWM period PWM period
  75. *
  76. * R interrupts/period[resolution]
  77. * F periods/second[frequency]
  78. * R * F interrupts/second
  79. */
  80. /* === OPTION 1 === */
  81. #if 0
  82. // 1kHz LPO
  83. // No prescaler => 1024 irqs/sec
  84. // Note: this is too slow for a smooth breathe
  85. LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_LPO)|LPTMRx_PSR_PBYP;
  86. #endif /* OPTION 1 */
  87. /* === OPTION 2 === */
  88. #if 1
  89. // nMHz IRC (n=4 on KL25Z, KL26Z and K20x; n=2 or 8 on KL27Z)
  90. MCG->C2 |= MCG_C2_IRCS; // fast (4MHz) internal ref clock
  91. #if defined(KL27) // divide the 8MHz IRC by 2, to have the same MCGIRCLK speed as others
  92. MCG->MC |= MCG_MC_LIRC_DIV2_DIV2;
  93. #endif /* KL27 */
  94. MCG->C1 |= MCG_C1_IRCLKEN; // enable internal ref clock
  95. // to work in stop mode, also MCG_C1_IREFSTEN
  96. // Divide 4MHz by 2^N (N=6) => 62500 irqs/sec =>
  97. // => approx F=61, R=256, duration = 4
  98. LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_MCGIRCLK)|LPTMRx_PSR_PRESCALE(6);
  99. #endif /* OPTION 2 */
  100. /* === OPTION 3 === */
  101. #if 0
  102. // OSC output (external crystal), usually 8MHz or 16MHz
  103. OSC0->CR |= OSC_CR_ERCLKEN; // enable ext ref clock
  104. // to work in stop mode, also OSC_CR_EREFSTEN
  105. // Divide by 2^N
  106. LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_OSCERCLK)|LPTMRx_PSR_PRESCALE(7);
  107. #endif /* OPTION 3 */
  108. /* === END OPTIONS === */
  109. /* Interrupt on TCF set (compare flag) */
  110. nvicEnableVector(LPTMR0_IRQn, 2); // vector, priority
  111. LPTMR0->CSR |= LPTMRx_CSR_TIE;
  112. }
  113. void sleep_led_enable(void) {
  114. /* Enable the timer */
  115. LPTMR0->CSR |= LPTMRx_CSR_TEN;
  116. }
  117. void sleep_led_disable(void) {
  118. /* Disable the timer */
  119. LPTMR0->CSR &= ~LPTMRx_CSR_TEN;
  120. }
  121. void sleep_led_toggle(void) {
  122. /* Toggle the timer */
  123. LPTMR0->CSR ^= LPTMRx_CSR_TEN;
  124. }
  125. #else /* platform selection: not on familiar Kinetis chips */
  126. void sleep_led_init(void) {
  127. }
  128. void sleep_led_enable(void) {
  129. led_set(1<<USB_LED_CAPS_LOCK);
  130. }
  131. void sleep_led_disable(void) {
  132. led_set(0);
  133. }
  134. void sleep_led_toggle(void) {
  135. // not implemented
  136. }
  137. #endif /* platform selection */