comparison nuc-fw/sysglue/appinit.c @ 130:8b0793c67f9f

nuc-fw: final preparations for the big transition
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 01 Nov 2013 08:03:23 +0000
parents
children
comparison
equal deleted inserted replaced
129:7d7950d7f924 130:8b0793c67f9f
1 /*
2 * This module contains our Application_Initialize() function,
3 * based on the disassembly of the binary object version in the
4 * Leonardo semi-src.
5 */
6
7 #include "../include/config.h"
8
9 Application_Initialize()
10 {
11 Init_Target();
12 /*
13 * The original version calls Init_Drivers() at this point,
14 * but that function is nothing more than a short sequence
15 * of calls to other functions, so I've inlined it.
16 */
17 #if 0
18 ABB_Sem_Create();
19 ffs_main_init();
20 #endif
21 rvf_init();
22 rvm_init();
23 create_tasks();
24 #if 0
25 SIM_Initialize();
26 #endif
27 /* end of Init_Drivers() */
28 #if CONFIG_GSM
29 Cust_Init_Layer1();
30 #endif
31 Init_Serial_Flows();
32 #if CONFIG_GSM
33 StartFrame();
34 #endif
35 Init_Unmask_IT();
36 }