Minor temporary patch to allow DFU packet callback

Fork of BLE_API by Bluetooth Low Energy

GapAdvertisingParams.cpp

Committer:
ktownsend
Date:
2013-12-10
Revision:
2:ffc5216bd2cc
Child:
4:50a31ff5f974

File content as of revision 2:ffc5216bd2cc:

#include <stdio.h>
#include <string.h>

#include "GapAdvertisingParams.h"

/**************************************************************************/
/*!
    @brief  Creates a new GapAdvertisingParams

    @section EXAMPLE

    @code

    @endcode
*/
/**************************************************************************/
GapAdvertisingParams::GapAdvertisingParams(uint8_t advType, uint16_t interval, uint16_t timeout)
{
    _advType = advType;
    _interval = interval;
    _timeout = timeout;
}

/**************************************************************************/
/*!
    Destructor
*/
/**************************************************************************/
GapAdvertisingParams::~GapAdvertisingParams(void)
{
}