示例#1
0
void disc_init(void)
{
	// Register DISC task into kernel
    task_disc_desc_register();

    // Reset all the profile role tasks
    PRF_CLIENT_RESET(disc_envs, DISC);
}
示例#2
0
文件: tipc.c 项目: charliexp/FireBLE
void tipc_init(void)
{
    // Register TIPC task into kernel
    task_tipc_desc_register();

    // Reset all the profile role tasks
    PRF_CLIENT_RESET(tipc_envs, TIPC);
}
示例#3
0
文件: scppc.c 项目: charliexp/FireBLE
void scppc_init(void)
{
	// Registet SCPPC task into kernel
	task_scppc_desc_register();

    // Reset all the profile role tasks
    PRF_CLIENT_RESET(scppc_envs, SCPPC);
}
示例#4
0
void basc_init(void)
{
	// Register BASC task into kernel
    task_basc_desc_register();

    // Reset all the profile role tasks
    PRF_CLIENT_RESET(basc_envs, BASC);
}
示例#5
0
void cscpc_init(void)
{
    // Register CSCPC TASK into kernel
    task_cscpc_desc_register();
    
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(cscpc_envs, CSCPC);
}
示例#6
0
void qppc_init(void)
{
    // Register QPPC task into kernel
    task_qppc_desc_register();

    // Reset all the profile role tasks
    PRF_CLIENT_RESET(qppc_envs, QPPC);
}
示例#7
0
文件: tips.c 项目: FuangCao/jwaoo-toy
/*
 * FUNCTION DEFINITIONS
 ****************************************************************************************
 */
void tips_init(void)
{
    PRF_CLIENT_RESET(tips_idx_envs, TIPS);

    // Reset Environment
    memset(&tips_env, 0, sizeof(tips_env));

    // Create TIPS task
    ke_task_create(TASK_TIPS, &TASK_DESC_TIPS);

    // Go to IDLE state
    ke_state_set(TASK_TIPS, TIPS_DISABLED);
}
示例#8
0
void pasps_init(void)
{
    PRF_CLIENT_RESET(pasps_idx_envs, PASPS);

    // Reset Common Environment
    memset(&pasps_env, 0, sizeof(struct pasps_env_tag));

    // Create PASPS task
    ke_task_create(TASK_PASPS, &TASK_DESC_PASPS);

    // First instance goes to IDLE state
    ke_state_set(TASK_PASPS, PASPS_DISABLED);
}
示例#9
0
文件: anps.c 项目: FuangCao/jwaoo-toy
void anps_init(void)
{
    PRF_CLIENT_RESET(anps_idx_envs, ANPS);

    // Reset Common Environment
    memset(&anps_env, 0, sizeof(anps_env));

    // Create ANPS task
    ke_task_create(TASK_ANPS, &TASK_DESC_ANPS);

    // First instance goes to IDLE state
    ke_state_set(TASK_ANPS, ANPS_DISABLED);
}
示例#10
0
void rscpc_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(rscpc_envs, RSCPC);
}
示例#11
0
文件: wptc.c 项目: HerianHe/NFC
void wptc_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(wptc_envs, WPTC);
}
示例#12
0
void basc_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(basc_envs, BASC);
}
示例#13
0
文件: glpc.c 项目: FuangCao/jwaoo-toy
void glpc_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(glpc_envs, GLPC);
}
示例#14
0
void hogpbh_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(hogpbh_envs, HOGPBH);
}
示例#15
0
void disc_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(disc_envs, DISC);
}
示例#16
0
文件: scppc.c 项目: imGit/DA14580
void scppc_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(scppc_envs, SCPPC);
}
示例#17
0
void proxm_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(proxm_envs, PROXM);
}
示例#18
0
void streamdatah_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(streamdatah_envs, STREAMDATAH);
}
示例#19
0
void htpc_init(void)
{
    // Reset all the profile role tasks
    PRF_CLIENT_RESET(htpc_envs, HTPC);
}