power.c 169 B

12345678910
  1. /* ___DISCLAIMER___ */
  2. #include <arm/NXP/LPC17xx/LPC17xx.h>
  3. #include "bits.h"
  4. #include "power.h"
  5. void power_init() {
  6. LPC_SC->PCONP |= (BV(PCTIM3) | BV(PCUART3));
  7. }