diff options
Diffstat (limited to 'keyboard/ergodox/backlight.c')
| -rw-r--r-- | keyboard/ergodox/backlight.c | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/keyboard/ergodox/backlight.c b/keyboard/ergodox/backlight.c new file mode 100644 index 000000000..f69364b2a --- /dev/null +++ b/keyboard/ergodox/backlight.c | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | |||
| 2 | #include <avr/io.h> | ||
| 3 | #include "backlight.h" | ||
| 4 | |||
| 5 | #define CHANNEL OCR1C | ||
| 6 | |||
| 7 | void backlight_init_ports() | ||
| 8 | { | ||
| 9 | |||
| 10 | // Setup PB7 as output and output low. | ||
| 11 | DDRB |= (1<<7); | ||
| 12 | PORTB &= ~(1<<7); | ||
| 13 | |||
| 14 | // Use full 16-bit resolution. | ||
| 15 | ICR1 = 0xFFFF; | ||
| 16 | |||
| 17 | // I could write a wall of text here to explain... but TL;DW | ||
| 18 | // Go read the ATmega32u4 datasheet. | ||
| 19 | // And this: http://blog.saikoled.com/post/43165849837/secret-konami-cheat-code-to-high-resolution-pwm-on | ||
| 20 | |||
| 21 | // Pin PB7 = OCR1C (Timer 1, Channel C) | ||
| 22 | // Compare Output Mode = Clear on compare match, Channel C = COM1C1=1 COM1C0=0 | ||
| 23 | // (i.e. start high, go low when counter matches.) | ||
| 24 | // WGM Mode 14 (Fast PWM) = WGM13=1 WGM12=1 WGM11=1 WGM10=0 | ||
| 25 | // Clock Select = clk/1 (no prescaling) = CS12=0 CS11=0 CS10=1 | ||
| 26 | |||
| 27 | TCCR1A = _BV(COM1C1) | _BV(WGM11); // = 0b00001010; | ||
| 28 | TCCR1B = _BV(WGM13) | _BV(WGM12) | _BV(CS10); // = 0b00011001; | ||
| 29 | |||
| 30 | backlight_init(); | ||
| 31 | } | ||
| 32 | |||
| 33 | void backlight_set(uint8_t level) | ||
| 34 | { | ||
| 35 | if ( level == 0 ) | ||
| 36 | { | ||
| 37 | // Turn off PWM control on PB7, revert to output low. | ||
| 38 | TCCR1A &= ~(_BV(COM1C1)); | ||
| 39 | CHANNEL = 0x0; | ||
| 40 | // Prevent backlight blink on lowest level | ||
| 41 | PORTB &= ~(_BV(PORTB7)); | ||
| 42 | } | ||
| 43 | else if ( level == BACKLIGHT_LEVELS ) | ||
| 44 | { | ||
| 45 | // Prevent backlight blink on lowest level | ||
| 46 | PORTB &= ~(_BV(PORTB7)); | ||
| 47 | // Turn on PWM control of PB7 | ||
| 48 | TCCR1A |= _BV(COM1C1); | ||
| 49 | // Set the brightness | ||
| 50 | CHANNEL = 0xFFFF; | ||
| 51 | } | ||
| 52 | else | ||
| 53 | { | ||
| 54 | // Prevent backlight blink on lowest level | ||
| 55 | PORTB &= ~(_BV(PORTB7)); | ||
| 56 | // Turn on PWM control of PB7 | ||
| 57 | TCCR1A |= _BV(COM1C1); | ||
| 58 | // Set the brightness | ||
| 59 | CHANNEL = 0xFFFF >> ((BACKLIGHT_LEVELS - level) * ((BACKLIGHT_LEVELS + 1) / 2)); | ||
| 60 | } | ||
| 61 | } \ No newline at end of file | ||
