view gsm-fw/sysglue/appinit.c @ 287:211b35db427c
fc-fsio: cpout of single files implemented
author
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date
Fri, 28 Feb 2014 08:22:50 +0000 (2014-02-28)
parents
aa4ba71a1032
children
2a26785fb5a2
line source
+ − /*
+ − * This module contains our Application_Initialize() function,
+ − * based on the disassembly of the binary object version in the
+ − * Leonardo semi-src.
+ − */
+ −
+ − #include "../include/config.h"
+ −
+ − Application_Initialize()
+ − {
+ − Init_Target();
+ − /*
+ − * The original version calls Init_Drivers() at this point,
+ − * but that function is nothing more than a short sequence
+ − * of calls to other functions, so I've inlined it.
+ − */
+ − ABB_Sem_Create();
+ − ffs_main_init();
+ − rvf_init();
+ − rvm_init();
+ − create_tasks();
+ − #if 0
+ − SIM_Initialize();
+ − #endif
+ − /* end of Init_Drivers() */
+ − #if CONFIG_GSM
+ − Cust_Init_Layer1();
+ − #endif
+ − Init_Serial_Flows();
+ − #if CONFIG_GSM
+ − StartFrame();
+ − #endif
+ − Init_Unmask_IT();
+ − }