FreeCalypso > hg > freecalypso-sw
view gsm-fw/sysglue/appinit.c @ 548:67ab5f240b7d
gsm-fw/L1/cfile/*.c: s/ANLG_FAM/ANALOG/
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 03 Aug 2014 16:13:52 +0000 |
parents | 98c6be4d3d8d |
children | 0677a6fbb8b6 |
line wrap: on
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 CONFIG_GSM SIM_Initialize(); #endif /* end of Init_Drivers() */ #if CONFIG_INCLUDE_L1 Cust_Init_Layer1(); #endif Init_Serial_Flows(); #if CONFIG_GPF StartFrame(); #endif Init_Unmask_IT(); }