comparison gsm-fw/sysglue/appinit.c @ 643:d779078abe40

PCM integration: pcm_init() call
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Wed, 03 Sep 2014 17:50:06 +0000
parents 0677a6fbb8b6
children 2768b4339275
comparison
equal deleted inserted replaced
642:b039cafc8e31 643:d779078abe40
14 * but that function is nothing more than a short sequence 14 * but that function is nothing more than a short sequence
15 * of calls to other functions, so I've inlined it. 15 * of calls to other functions, so I've inlined it.
16 */ 16 */
17 ABB_Sem_Create(); 17 ABB_Sem_Create();
18 ffs_main_init(); 18 ffs_main_init();
19 /*
20 * The call to pcm_init() used to be at the end of ffs_main_init(),
21 * but I factored it out. - Space Falcon
22 */
23 #if CONFIG_INCLUDE_PCM
24 pcm_init();
25 #endif
19 rvf_init(); 26 rvf_init();
20 rvm_init(); 27 rvm_init();
21 create_tasks(); 28 create_tasks();
22 #if CONFIG_INCLUDE_SIM 29 #if CONFIG_INCLUDE_SIM
23 SIM_Initialize(); 30 SIM_Initialize();