zach_thesholding
Dependencies: BLE_API mbed nRF51822
Fork of BLE_notifications_with_orig_mbed by
main.cpp@10:7943b5c1117a, 2015-12-30 (annotated)
- Committer:
- andresag
- Date:
- Wed Dec 30 09:54:06 2015 +0000
- Revision:
- 10:7943b5c1117a
- Parent:
- 9:0f6951db24f1
- Child:
- 11:fd1cf9dbf3a4
Update example to comply with latest BLE API changes.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 0:28f095301cb2 | 1 | /* mbed Microcontroller Library |
rgrover1 | 0:28f095301cb2 | 2 | * Copyright (c) 2006-2013 ARM Limited |
rgrover1 | 0:28f095301cb2 | 3 | * |
rgrover1 | 0:28f095301cb2 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
rgrover1 | 0:28f095301cb2 | 5 | * you may not use this file except in compliance with the License. |
rgrover1 | 0:28f095301cb2 | 6 | * You may obtain a copy of the License at |
rgrover1 | 0:28f095301cb2 | 7 | * |
rgrover1 | 0:28f095301cb2 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
rgrover1 | 0:28f095301cb2 | 9 | * |
rgrover1 | 0:28f095301cb2 | 10 | * Unless required by applicable law or agreed to in writing, software |
rgrover1 | 0:28f095301cb2 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
rgrover1 | 0:28f095301cb2 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
rgrover1 | 0:28f095301cb2 | 13 | * See the License for the specific language governing permissions and |
rgrover1 | 0:28f095301cb2 | 14 | * limitations under the License. |
rgrover1 | 0:28f095301cb2 | 15 | */ |
rgrover1 | 0:28f095301cb2 | 16 | |
rgrover1 | 0:28f095301cb2 | 17 | #include "mbed.h" |
andresag | 10:7943b5c1117a | 18 | #include "ble/BLE.h" |
rgrover1 | 0:28f095301cb2 | 19 | #include "ButtonService.h" |
rgrover1 | 0:28f095301cb2 | 20 | |
rgrover1 | 0:28f095301cb2 | 21 | DigitalOut led1(LED1); |
rgrover1 | 0:28f095301cb2 | 22 | InterruptIn button(BUTTON1); |
rgrover1 | 0:28f095301cb2 | 23 | |
rgrover1 | 0:28f095301cb2 | 24 | const static char DEVICE_NAME[] = "Button"; |
rgrover1 | 0:28f095301cb2 | 25 | static const uint16_t uuid16_list[] = {ButtonService::BUTTON_SERVICE_UUID}; |
rgrover1 | 0:28f095301cb2 | 26 | |
rgrover1 | 9:0f6951db24f1 | 27 | enum { |
rgrover1 | 9:0f6951db24f1 | 28 | RELEASED = 0, |
rgrover1 | 9:0f6951db24f1 | 29 | PRESSED, |
rgrover1 | 9:0f6951db24f1 | 30 | IDLE |
rgrover1 | 9:0f6951db24f1 | 31 | }; |
rgrover1 | 9:0f6951db24f1 | 32 | static uint8_t buttonState = IDLE; |
rgrover1 | 9:0f6951db24f1 | 33 | |
andresag | 10:7943b5c1117a | 34 | static ButtonService *buttonServicePtr; |
rgrover1 | 0:28f095301cb2 | 35 | |
rgrover1 | 0:28f095301cb2 | 36 | void buttonPressedCallback(void) |
rgrover1 | 0:28f095301cb2 | 37 | { |
rgrover1 | 9:0f6951db24f1 | 38 | /* Note that the buttonPressedCallback() executes in interrupt context, so it is safer to access |
rgrover1 | 9:0f6951db24f1 | 39 | * BLE device API from the main thread. */ |
rgrover1 | 9:0f6951db24f1 | 40 | buttonState = PRESSED; |
rgrover1 | 0:28f095301cb2 | 41 | } |
rgrover1 | 0:28f095301cb2 | 42 | |
rgrover1 | 0:28f095301cb2 | 43 | void buttonReleasedCallback(void) |
rgrover1 | 0:28f095301cb2 | 44 | { |
rgrover1 | 9:0f6951db24f1 | 45 | /* Note that the buttonReleasedCallback() executes in interrupt context, so it is safer to access |
rgrover1 | 9:0f6951db24f1 | 46 | * BLE device API from the main thread. */ |
rgrover1 | 9:0f6951db24f1 | 47 | buttonState = RELEASED; |
rgrover1 | 0:28f095301cb2 | 48 | } |
rgrover1 | 0:28f095301cb2 | 49 | |
rgrover1 | 8:a7ba7aaba460 | 50 | void disconnectionCallback(const Gap::DisconnectionCallbackParams_t *params) |
rgrover1 | 0:28f095301cb2 | 51 | { |
andresag | 10:7943b5c1117a | 52 | BLE::Instance().gap().startAdvertising(); |
rgrover1 | 0:28f095301cb2 | 53 | } |
rgrover1 | 0:28f095301cb2 | 54 | |
rgrover1 | 0:28f095301cb2 | 55 | void periodicCallback(void) |
rgrover1 | 0:28f095301cb2 | 56 | { |
rgrover1 | 0:28f095301cb2 | 57 | led1 = !led1; /* Do blinky on LED1 to indicate system aliveness. */ |
rgrover1 | 0:28f095301cb2 | 58 | } |
rgrover1 | 0:28f095301cb2 | 59 | |
andresag | 10:7943b5c1117a | 60 | /** |
andresag | 10:7943b5c1117a | 61 | * This function is called when the ble initialization process has failled |
andresag | 10:7943b5c1117a | 62 | */ |
andresag | 10:7943b5c1117a | 63 | void onBleInitError(BLE &ble, ble_error_t error) |
andresag | 10:7943b5c1117a | 64 | { |
andresag | 10:7943b5c1117a | 65 | /* Initialization error handling should go here */ |
andresag | 10:7943b5c1117a | 66 | } |
andresag | 10:7943b5c1117a | 67 | |
andresag | 10:7943b5c1117a | 68 | /** |
andresag | 10:7943b5c1117a | 69 | * Callback triggered when the ble initialization process has finished |
andresag | 10:7943b5c1117a | 70 | */ |
andresag | 10:7943b5c1117a | 71 | void bleInitComplete(BLE::InitializationCompleteCallbackContext *params) |
andresag | 10:7943b5c1117a | 72 | { |
andresag | 10:7943b5c1117a | 73 | BLE& ble = params->ble; |
andresag | 10:7943b5c1117a | 74 | ble_error_t error = params->error; |
andresag | 10:7943b5c1117a | 75 | |
andresag | 10:7943b5c1117a | 76 | if (error != BLE_ERROR_NONE) { |
andresag | 10:7943b5c1117a | 77 | /* In case of error, forward the error handling to onBleInitError */ |
andresag | 10:7943b5c1117a | 78 | onBleInitError(ble, error); |
andresag | 10:7943b5c1117a | 79 | return; |
andresag | 10:7943b5c1117a | 80 | } |
andresag | 10:7943b5c1117a | 81 | |
andresag | 10:7943b5c1117a | 82 | /* Ensure that it is the default instance of BLE */ |
andresag | 10:7943b5c1117a | 83 | if(ble.getInstanceID() != BLE::DEFAULT_INSTANCE) { |
andresag | 10:7943b5c1117a | 84 | return; |
andresag | 10:7943b5c1117a | 85 | } |
andresag | 10:7943b5c1117a | 86 | |
andresag | 10:7943b5c1117a | 87 | ble.gap().onDisconnection(disconnectionCallback); |
andresag | 10:7943b5c1117a | 88 | |
andresag | 10:7943b5c1117a | 89 | /* Setup primary service */ |
andresag | 10:7943b5c1117a | 90 | buttonServicePtr = new ButtonService(ble, false /* initial value for button pressed */); |
andresag | 10:7943b5c1117a | 91 | |
andresag | 10:7943b5c1117a | 92 | /* setup advertising */ |
andresag | 10:7943b5c1117a | 93 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::BREDR_NOT_SUPPORTED | GapAdvertisingData::LE_GENERAL_DISCOVERABLE); |
andresag | 10:7943b5c1117a | 94 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LIST_16BIT_SERVICE_IDS, (uint8_t *)uuid16_list, sizeof(uuid16_list)); |
andresag | 10:7943b5c1117a | 95 | ble.gap().accumulateAdvertisingPayload(GapAdvertisingData::COMPLETE_LOCAL_NAME, (uint8_t *)DEVICE_NAME, sizeof(DEVICE_NAME)); |
andresag | 10:7943b5c1117a | 96 | ble.gap().setAdvertisingType(GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED); |
andresag | 10:7943b5c1117a | 97 | ble.gap().setAdvertisingInterval(1000); /* 1000ms. */ |
andresag | 10:7943b5c1117a | 98 | ble.gap().startAdvertising(); |
andresag | 10:7943b5c1117a | 99 | |
andresag | 10:7943b5c1117a | 100 | } |
andresag | 10:7943b5c1117a | 101 | |
rgrover1 | 0:28f095301cb2 | 102 | int main(void) |
rgrover1 | 0:28f095301cb2 | 103 | { |
rgrover1 | 0:28f095301cb2 | 104 | led1 = 1; |
rgrover1 | 0:28f095301cb2 | 105 | Ticker ticker; |
rgrover1 | 0:28f095301cb2 | 106 | ticker.attach(periodicCallback, 1); |
rgrover1 | 0:28f095301cb2 | 107 | button.fall(buttonPressedCallback); |
rgrover1 | 0:28f095301cb2 | 108 | button.rise(buttonReleasedCallback); |
rgrover1 | 0:28f095301cb2 | 109 | |
andresag | 10:7943b5c1117a | 110 | BLE &ble = BLE::Instance(); |
andresag | 10:7943b5c1117a | 111 | ble.init(bleInitComplete); |
andresag | 10:7943b5c1117a | 112 | |
andresag | 10:7943b5c1117a | 113 | /* SpinWait for initialization to complete. This is necessary because the |
andresag | 10:7943b5c1117a | 114 | * BLE object is used in the main loop below. */ |
andresag | 10:7943b5c1117a | 115 | while (ble.hasInitialized() == false) { /* spin loop */ } |
andresag | 10:7943b5c1117a | 116 | |
rgrover1 | 0:28f095301cb2 | 117 | while (true) { |
andresag | 10:7943b5c1117a | 118 | if (buttonState != IDLE) { |
rgrover1 | 9:0f6951db24f1 | 119 | buttonServicePtr->updateButtonState(buttonState); |
rgrover1 | 9:0f6951db24f1 | 120 | buttonState = IDLE; |
rgrover1 | 9:0f6951db24f1 | 121 | } |
rgrover1 | 9:0f6951db24f1 | 122 | |
rgrover1 | 0:28f095301cb2 | 123 | ble.waitForEvent(); |
rgrover1 | 0:28f095301cb2 | 124 | } |
rgrover1 | 0:28f095301cb2 | 125 | } |