Browse Source

Setting ICED bootloader to turn LCD backlight red

connect
Jacob Alexander 8 years ago
parent
commit
581b464a13
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      Bootloader/main.c

+ 6
- 0
Bootloader/main.c View File

@@ -192,6 +192,12 @@ void main()
// 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