rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
Functions
board.c File Reference

Detailed Description

Board initialization file.

Author
andreika prome.nosp@m.theu.nosp@m.s.pcb.nosp@m.@gma.nosp@m.il.co.nosp@m.m

Definition in file board.c.

Functions

void delay (void)
 
void __early_init (void)
 
void __late_init (void)
 
void boardInit (void)
 

Function Documentation

◆ __early_init()

void __early_init ( void  )

Definition at line 21 of file board.c.

21 {
22 SystemInit();
23}
void SystemInit(void)
Setup the microcontroller system Initialize the FPU setting, vector table location and External memor...
Here is the call graph for this function:

◆ __late_init()

void __late_init ( void  )

Definition at line 25 of file board.c.

25 {
26 // we need static variables to be already initialized
27 // to configure the clock properly and save its state
28 //ke1xf_clock_init(KINETIS_DEFAULT_CLK);
29}

◆ boardInit()

void boardInit ( void  )

Definition at line 31 of file board.c.

31 {
32}

◆ delay()

void delay ( void  )

Definition at line 12 of file board.c.

13{
14 volatile uint32_t i = 0;
15 for (i = 0; i < 800000; ++i)
16 {
17 __asm("NOP"); /* delay */
18 }
19}

Referenced by __blink().

Here is the caller graph for this function:

Go to the source code of this file.