High level Bluetooth Low Energy API and radio abstraction layer

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

main.cpp

Committer:
ktownsend
Date:
2013-12-18
Revision:
16:542a9db01350
Parent:
15:327d7329072c
Child:
23:f19c60478e1b

File content as of revision 16:542a9db01350:

#include "mbed.h"
#include "uuid.h"
#include "hw/nrf51822.h"

DigitalOut        myled ( LED1 );

/* Radio HW */
nRF51822 radio;

void startBeacon(void)
{
    GapAdvertisingParams advParams ( GapAdvertisingParams::ADV_NON_CONNECTABLE_UNDIRECTED );
    GapAdvertisingData   advData;
    GapAdvertisingData   scanResponse;
    
    uint8_t iBeaconPayload[25] = { 0x4C, 0x00, 0x02, 0x15, 0xE2, 0x0A, 0x39, 0xF4, 0x73, 0xF5, 0x4B, 0xC4, 0xA1, 0x2F, 0x17, 0xD1, 0xAD, 0x07, 0xA9, 0x61, 0x00, 0x00, 0x00, 0x00, 0xC8 };
    
    /* ToDo: Check error conditions in a shared ASSERT with debug output via printf */
    ble_error_t error;
    
    /* iBeacon includes the FLAG and MSD fields */
    error = advData.addFlags(GapAdvertisingData::BREDR_NOT_SUPPORTED);
    error = advData.addData(GapAdvertisingData::MANUFACTURER_SPECIFIC_DATA, iBeaconPayload, 25);

    error = radio.reset();
    error = radio.setAdvertising(advParams, advData, scanResponse);
    error = radio.start();
}

int main()
{
    /* Give the radio some time to boot up and settle */
    wait(2);

    startBeacon();
    
    while(1);
}