mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-12 11:34:38 +00:00
Merge pull request #892 from fredizzimo/disable_ergodox_lcd
Always initialize the Infinity Ergodox backlight
This commit is contained in:
commit
be265decae
2 changed files with 5 additions and 26 deletions
|
@ -38,7 +38,6 @@ void init_serial_link_hal(void) {
|
||||||
// Using a higher pre-scalar without flicker is possible but FTM0_MOD will need to be reduced
|
// Using a higher pre-scalar without flicker is possible but FTM0_MOD will need to be reduced
|
||||||
// Which will reduce the brightness range
|
// Which will reduce the brightness range
|
||||||
#define PRESCALAR_DEFINE 0
|
#define PRESCALAR_DEFINE 0
|
||||||
#ifdef VISUALIZER_ENABLE
|
|
||||||
void lcd_backlight_hal_init(void) {
|
void lcd_backlight_hal_init(void) {
|
||||||
// Setup Backlight
|
// Setup Backlight
|
||||||
SIM->SCGC6 |= SIM_SCGC6_FTM0;
|
SIM->SCGC6 |= SIM_SCGC6_FTM0;
|
||||||
|
@ -76,7 +75,6 @@ void lcd_backlight_hal_color(uint16_t r, uint16_t g, uint16_t b) {
|
||||||
CHANNEL_GREEN.CnV = g;
|
CHANNEL_GREEN.CnV = g;
|
||||||
CHANNEL_BLUE.CnV = b;
|
CHANNEL_BLUE.CnV = b;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
__attribute__ ((weak))
|
__attribute__ ((weak))
|
||||||
void matrix_init_user(void) {
|
void matrix_init_user(void) {
|
||||||
|
@ -92,6 +90,10 @@ void matrix_init_kb(void) {
|
||||||
// runs once when the firmware starts up
|
// runs once when the firmware starts up
|
||||||
|
|
||||||
matrix_init_user();
|
matrix_init_user();
|
||||||
|
// The backlight always has to be initialized, otherwise it will stay lit
|
||||||
|
#ifndef VISUALIZER_ENABLE
|
||||||
|
lcd_backlight_hal_init();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void matrix_scan_kb(void) {
|
void matrix_scan_kb(void) {
|
||||||
|
|
|
@ -21,29 +21,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
void led_set(uint8_t usb_led) {
|
void led_set(uint8_t usb_led) {
|
||||||
// The LCD backlight functionality conflicts with this simple
|
//TODO: Add led emulation if there's no customized visualization
|
||||||
// red backlight
|
|
||||||
#if !defined(LCD_BACKLIGHT_ENABLE) && defined(STATUS_LED_ENABLE)
|
|
||||||
// PTC1: LCD Backlight Red(0:on/1:off)
|
|
||||||
GPIOC->PDDR |= (1<<1);
|
|
||||||
PORTC->PCR[1] |= PORTx_PCRn_DSE | PORTx_PCRn_MUX(1);
|
|
||||||
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
|
||||||
GPIOC->PCOR |= (1<<1);
|
|
||||||
} else {
|
|
||||||
GPIOC->PSOR |= (1<<1);
|
|
||||||
}
|
|
||||||
#elif !defined(LCD_BACKLIGHT_ENABLE)
|
|
||||||
(void)usb_led;
|
(void)usb_led;
|
||||||
GPIOC->PDDR |= (1<<1);
|
|
||||||
PORTC->PCR[1] |= PORTx_PCRn_DSE | PORTx_PCRn_MUX(1);
|
|
||||||
GPIOC->PSOR |= (1<<1);
|
|
||||||
GPIOC->PDDR |= (1<<2);
|
|
||||||
PORTC->PCR[2] |= PORTx_PCRn_DSE | PORTx_PCRn_MUX(1);
|
|
||||||
GPIOC->PSOR |= (1<<2);
|
|
||||||
GPIOC->PDDR |= (1<<3);
|
|
||||||
PORTC->PCR[3] |= PORTx_PCRn_DSE | PORTx_PCRn_MUX(1);
|
|
||||||
GPIOC->PSOR |= (1<<3);
|
|
||||||
#else
|
|
||||||
(void)usb_led;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue