FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/sysglue/appinit.c @ 143:afceeeb2cba1
Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 12 Nov 2013 05:35:48 +0000 |
parents | nuc-fw/sysglue/appinit.c@8b0793c67f9f |
children | 97b671efff9c |
comparison
equal
deleted
inserted
replaced
142:15d5977390c2 | 143:afceeeb2cba1 |
---|---|
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 } |