spp_dev_init.c

来自「篮牙spp profile软件」· C语言 代码 · 共 36 行

C
36
字号
/****************************************************************************
Copyright (C) Cambridge Silicon Radio Ltd. 2004-2006
Part of BlueLab 3.4.2-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()
{
    /* Initialise the spp profile lib, stating that this is device A */ 
    SppInit(getAppTask(), devA, 255);
}

⌨️ 快捷键说明

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