forked from Traumflug/Teacup_Firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcpu-arm.c
More file actions
26 lines (19 loc) · 665 Bytes
/
cpu-arm.c
File metadata and controls
26 lines (19 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** \file
\brief CPU initialisation, ARM specific part.
To be included from cpu.c, for details see there.
*/
#if defined TEACUP_C_INCLUDE && defined __ARMEL__
#include "config_wrapper.h"
void cpu_init() {
/**
Other than on ATmegas, the LPC11xx disables all peripherals except GPIO
and SPI0 on reset. Brown Out detector is set to kick in at 1.46 V, without
causing a reset. See chapter 3.5.14 in the LPC11xx User Manual.
GPIO is needed in all configurations, so we just turn off SPI0 if not
needed.
*/
#ifndef SPI
LPC_SYSCON->SYSAHBCLKCTRL &= ~(1 << 11);
#endif
}
#endif /* defined TEACUP_C_INCLUDE && defined __ARMEL__ */