]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/atomic/backlight.c
Update for Atomic PCB Rev 0
[qmk_firmware.git] / keyboard / atomic / backlight.c
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 = level << OFFSET | 0x0FFF;
40         CHANNEL = ((1 << level) - 1);
41     }
42     else
43     {
44         // Turn on PWM control of PB7
45         TCCR1A |= _BV(COM1C1);
46         // CHANNEL = level << OFFSET | 0x0FFF;
47         CHANNEL = ((1 << level) - 1);
48     }
49 }