# HG changeset patch # User Jacob Alexander # Date 1438478764 25200 # Node ID b02fc17eb0279076fa01307d6f1a54f632082daf # Parent df78f3312db02eaf48f403d90e5855d0b635e08b Setting ICED bootloader to turn LCD backlight red diff -r df78f3312db0 -r b02fc17eb027 Bootloader/main.c --- a/Bootloader/main.c Sat Jul 25 15:06:19 2015 -0700 +++ b/Bootloader/main.c Sat Aug 01 18:26:04 2015 -0700 @@ -192,6 +192,12 @@ // Setup pin - A5 - See Lib/pin_map.mchck for more details on pins PORTA_PCR5 = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); GPIOA_PSOR |= (1<<5); + + // TODO Add CMake configuration for disabling + // Set LCD backlight on ICED to Red + GPIOC_PDDR |= (1<<1); + PORTC_PCR1 = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1); + GPIOC_PCOR |= (1<<1); #else #error "Incompatible chip for bootloader" #endif