⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spp_dev_init.c

📁 蓝牙虚拟串口程序1 设备A BLUELAB4.0
💻 C
字号:
/****************************************************************************
Copyright (C) Cambridge Silicon Radio Ltd. 2004-2008
Part of BlueLab 4.0.1-release

FILE NAME
    spp_dev_init.h
    
DESCRIPTION
    Handles initialisation procedures of spp dev A application
    
*/

/****************************************************************************
    Header files
*/
#include "spp_dev_init.h"
#include "spp_dev_private.h"

#include <spp.h>

/****************************************************************************
NAME    
    sppDevInit
    
DESCRIPTION
    Initialisation of Spp profile

RETURNS
    void
*/
void sppDevInit()
{
    spp_init_params init;

    init.client_recipe = 0;
    init.size_service_record = 0;
	init.service_record = 0;
	init.no_service_record = 0;
    /* Initialise the spp profile lib, stating that this is device A */ 
    SppInitLazy(getAppTask(), getAppTask(), &init);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -