diff options
Diffstat (limited to 'arduino/libraries/Bluefruit52Lib/src/clients')
12 files changed, 1646 insertions, 0 deletions
diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEAncs.cpp b/arduino/libraries/Bluefruit52Lib/src/clients/BLEAncs.cpp new file mode 100755 index 0000000..e62c116 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEAncs.cpp @@ -0,0 +1,391 @@ +/**************************************************************************/ +/*! + @file BLEAncs.cpp + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#include "bluefruit.h" + +#define BLE_ANCS_TIMEOUT (5*BLE_GENERIC_TIMEOUT) + +#define DEBUG_ANCS 0 + +void bleancs_notification_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); +void bleancs_data_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); + +/* ANCS Service : 7905F431-B5CE-4E99-A40F-4B1E122D00D0 + * Control Point : 69D1D8F3-45E1-49A8-9821-9BBDFDAAD9D9 + * Notification Source : 9FBF120D-6301-42D9-8C58-25E699A21DBD + * Data Source : 22EAC6E9-24D6-4BB5-BE44-B36ACE7C7BFB + */ + +const uint8_t BLEANCS_UUID_SERVICE[] = +{ + 0xD0, 0x00, 0x2D, 0x12, 0x1E, 0x4B, 0x0F, 0xA4, + 0x99, 0x4E, 0xCE, 0xB5, 0x31, 0xF4, 0x05, 0x79 +}; + +const uint8_t BLEANCS_UUID_CHR_CONTROL[] = +{ + 0xD9, 0xD9, 0xAA, 0xFD, 0xBD, 0x9B, 0x21, 0x98, + 0xA8, 0x49, 0xE1, 0x45, 0xF3, 0xD8, 0xD1, 0x69 +}; + +const uint8_t BLEANCS_UUID_CHR_NOTIFICATION[] +{ + 0xBD, 0x1D, 0xA2, 0x99, 0xE6, 0x25, 0x58, 0x8C, + 0xD9, 0x42, 0x01, 0x63, 0x0D, 0x12, 0xBF, 0x9F +}; + +const uint8_t BLEANCS_UUID_CHR_DATA[] = +{ + 0xFB, 0x7B, 0x7C, 0xCE, 0x6A, 0xB3, 0x44, 0xBE, + 0xB5, 0x4B, 0xD6, 0x24, 0xE9, 0xC6, 0xEA, 0x22 +}; + +BLEAncs::BLEAncs(void) + : BLEClientService(BLEANCS_UUID_SERVICE), _control(BLEANCS_UUID_CHR_CONTROL), + _notification(BLEANCS_UUID_CHR_NOTIFICATION), _data(BLEANCS_UUID_CHR_DATA), + _adamsg() +{ + _notif_cb = NULL; +} + +bool BLEAncs::begin(void) +{ + // Invoke base class begin() + BLEClientService::begin(); + + _adamsg.begin(false); + + _control.begin(); + _notification.begin(); + _data.begin(); + + _notification.setNotifyCallback(bleancs_notification_cb); + + // Data Attribute is most likely requested in notification callback + // let's call data's callback in the ble task + _data.setNotifyCallback(bleancs_data_cb, false); + + return true; +} + +bool BLEAncs::discover(uint16_t conn_handle) +{ + // Call BLECentralService discover + VERIFY( BLEClientService::discover(conn_handle) ); + _conn_hdl = BLE_CONN_HANDLE_INVALID; // make as invalid until we found all chars + + // Discover characteristics + BLEClientCharacteristic* chr_arr[] = { &_control, &_notification, &_data }; + + VERIFY( 3 == Bluefruit.Discovery.discoverCharacteristic(conn_handle, chr_arr, 3) ); + + _conn_hdl = conn_handle; + return true; +} + +void BLEAncs::setNotificationCallback(notification_callback_t fp) +{ + _notif_cb = fp; +} + +bool BLEAncs::enableNotification(void) +{ + // enable both Notification & Data Source + VERIFY ( _data.enableNotify() ); + VERIFY ( _notification.enableNotify() ); + + return true; +} + +bool BLEAncs::disableNotification(void) +{ + _notification.disableNotify(); + _data.disableNotify(); + + return true; +} + +/*------------------------------------------------------------------*/ +/* NOTIFICATION + *------------------------------------------------------------------*/ +typedef struct ATTR_PACKED +{ + // Cortex M4 can access unaligned memory + uint8_t cmd; + uint32_t uid; + uint8_t attr; + uint16_t len; // optional when sending command +}get_notif_attr_t; + +VERIFY_STATIC( sizeof(get_notif_attr_t) == 8); + +typedef struct ATTR_PACKED +{ + // Cortex M4 can access unaligned memory + uint8_t cmd; + uint32_t uid; + uint8_t actionid; +}perform_action_t; + +VERIFY_STATIC( sizeof(perform_action_t) == 6); + +/*------------------------------------------------------------------*/ +/* + *------------------------------------------------------------------*/ +uint16_t BLEAncs::getAttribute(uint32_t uid, uint8_t attr, void* buffer, uint16_t bufsize) +{ + VERIFY ( attr < ANCS_ATTR_INVALID, 0); + + // command ID | uid | attr (+ len) + get_notif_attr_t command = + { + .cmd = ANCS_CMD_GET_NOTIFICATION_ATTR, + .uid = uid, + .attr = attr, + .len = bufsize + }; + uint8_t cmdlen = 6; + + // Title, Subtitle, Message must require 2-byte length + if (attr == ANCS_ATTR_TITLE || attr == ANCS_ATTR_SUBTITLE || attr == ANCS_ATTR_MESSAGE) + { + cmdlen = 8; + } + + // Write command using write response +#if DEBUG_ANCS + PRINT_BUFFER(&command, cmdlen); +#endif + + _adamsg.prepare(buffer, bufsize); + VERIFY( cmdlen == _control.write_resp(&command, cmdlen), 0); + VERIFY( _adamsg.waitUntilComplete(BLE_ANCS_TIMEOUT) >= 0, 0); + + // At least 1 packet arrived, enough to know attribute length + uint16_t attr_len = ((get_notif_attr_t*) buffer)->len; + + // wait until all data received Or we run out of memory + while ( ( (attr_len + sizeof(get_notif_attr_t)) > _adamsg.xferlen ) && + ( _adamsg.remaining > 0 ) ) + { + VERIFY( _adamsg.waitUntilComplete(BLE_ANCS_TIMEOUT) >= 0, 0); + } + + // Received length could be less if we run out of buffer + attr_len = _adamsg.xferlen - sizeof(get_notif_attr_t); + + // Shift out the Command data, left only Attribute data + memmove(buffer, ((uint8_t*)buffer) +sizeof(get_notif_attr_t), attr_len); + + // Include null-terminator for some string application + if ( attr_len < bufsize ) + { + ((char*) buffer)[attr_len] = 0; + } + + return attr_len; + +} + +uint16_t BLEAncs::getAppAttribute(const char* appid, uint8_t attr, void* buffer, uint16_t bufsize) +{ + VERIFY ( attr < ANCS_APP_ATTR_INVALID, 0); + + // command ID | App ID (including Null terminator) | Attr + uint8_t cmdlen = 1 + strlen(appid)+1 + 1; + uint8_t* command = (uint8_t*) rtos_malloc( cmdlen ); + + command[0] = ANCS_CMD_GET_APP_ATTR; + strcpy( (char*) command+1, appid); + command[cmdlen-1] = attr; + +#if DEBUG_ANCS + PRINT_BUFFER(command, cmdlen); +#endif + _adamsg.prepare(buffer, bufsize); + + // Write command using write response + if ( cmdlen != _control.write_resp(command, cmdlen) ) + { + rtos_free(command); + return 0; + } + rtos_free(command); + + // Phase 1: Get data until Attribute Length is known + while ( (cmdlen+2) > _adamsg.xferlen && + (_adamsg.remaining > 0) ) + { + VERIFY( _adamsg.waitUntilComplete(BLE_ANCS_TIMEOUT) >= 0, 0); + } + + uint16_t attr_len; + memcpy(&attr_len, ((uint8_t*)buffer)+cmdlen, 2); + + // Phase 2: Get data until all attribute data received + // Or we run out of memory + while ( (attr_len + cmdlen+2) > _adamsg.xferlen && + (_adamsg.remaining > 0) ) + { + VERIFY( _adamsg.waitUntilComplete(BLE_ANCS_TIMEOUT) >= 0, 0); + } + + // Received length could be less if we run out of buffer + attr_len = _adamsg.xferlen - (cmdlen+2); + + // Shift out the Command data, left only Attribute data + memmove(buffer, ((uint8_t*)buffer) +cmdlen+2, attr_len); + + // including null-terminator for some string application + if ( attr_len < bufsize ) + { + ((char*) buffer)[attr_len] = 0; + } + + return attr_len; +} + +bool BLEAncs::performAction(uint32_t uid, uint8_t actionid) +{ + perform_action_t action = + { + .cmd = ANCS_CMD_PERFORM_NOTIFICATION_ACTION, + .uid = uid, + .actionid = actionid + }; + + return sizeof(perform_action_t) == _control.write_resp(&action, sizeof(perform_action_t)); +} + +void BLEAncs::_handleNotification(uint8_t* data, uint16_t len) +{ + if ( len != 8 ) return; + if ( _notif_cb ) _notif_cb((AncsNotification_t*) data); +} + +void BLEAncs::_handleData(uint8_t* data, uint16_t len) +{ +#if DEBUG_ANCS + PRINT_BUFFER(data, len); +#endif + + _adamsg.feed(data, len); + _adamsg.complete(); // mark as complete each time we received data +} + +/*------------------------------------------------------------------*/ +/* High Level API + *------------------------------------------------------------------*/ +uint16_t BLEAncs::getAppID(uint32_t uid, void* buffer, uint16_t bufsize) +{ + return getAttribute(uid, ANCS_ATTR_APP_IDENTIFIER, buffer, bufsize); +} + +uint16_t BLEAncs::getTitle(uint32_t uid, void* buffer, uint16_t bufsize) +{ + return getAttribute(uid, ANCS_ATTR_TITLE, buffer, bufsize); +} + +uint16_t BLEAncs::getSubtitle(uint32_t uid, void* buffer, uint16_t bufsize) +{ + return getAttribute(uid, ANCS_ATTR_SUBTITLE, buffer, bufsize); +} + +uint16_t BLEAncs::getMessage(uint32_t uid, void* buffer, uint16_t bufsize) +{ + return getAttribute(uid, ANCS_ATTR_MESSAGE, buffer, bufsize); +} + +uint16_t BLEAncs::getMessageSize(uint32_t uid) +{ + char buf[20] = { 0 }; + + VERIFY( getAttribute(uid, ANCS_ATTR_MESSAGE_SIZE, buf, sizeof(buf)), 0); + uint16_t result = strtoul(buf, NULL, 10); + + return result; +} + +uint16_t BLEAncs::getDate(uint32_t uid, void* buffer, uint16_t bufsize) +{ + return getAttribute(uid, ANCS_ATTR_DATE, buffer, bufsize); +} + +uint16_t BLEAncs::getPosActionLabel(uint32_t uid, void* buffer, uint16_t bufsize) +{ + return getAttribute(uid, ANCS_ATTR_POSITIVE_ACTION_LABEL, buffer, bufsize); +} + +uint16_t BLEAncs::getNegActionLabel(uint32_t uid, void* buffer, uint16_t bufsize) +{ + return getAttribute(uid, ANCS_ATTR_NEGATIVE_ACTION_LABEL, buffer, bufsize); +} + +uint16_t BLEAncs::getAppName(uint32_t uid, void* buffer, uint16_t bufsize) +{ + // First get AppID + char appID[64] = { 0 }; + VERIFY( getAppID(uid, appID, sizeof(appID)), 0 ); + + // Then get App Display Name + return getAppAttribute(appID, ANCS_APP_ATTR_DISPLAY_NAME, buffer, bufsize); +} + +bool BLEAncs::actPositive(uint32_t uid) +{ + return performAction(uid, ANCS_ACTION_POSITIVE); +} + +bool BLEAncs::actNegative(uint32_t uid) +{ + return performAction(uid, ANCS_ACTION_NEGATIVE); +} + + +/*------------------------------------------------------------------*/ +/* Callback + *------------------------------------------------------------------*/ +void bleancs_notification_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len) +{ + BLEAncs& svc = (BLEAncs&) chr->parentService(); + svc._handleNotification(data, len); +} + +void bleancs_data_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len) +{ + BLEAncs& svc = (BLEAncs&) chr->parentService(); + svc._handleData(data, len); +} diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEAncs.h b/arduino/libraries/Bluefruit52Lib/src/clients/BLEAncs.h new file mode 100755 index 0000000..05d8e29 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEAncs.h @@ -0,0 +1,182 @@ +/**************************************************************************/ +/*! + @file BLEAncs.h + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ +#ifndef BLEANCS_H_ +#define BLEANCS_H_ + +#include "../BLEClientCharacteristic.h" +#include "bluefruit_common.h" + +#include "BLEClientService.h" + +extern const uint8_t BLEANCS_UUID_SERVICE[]; +extern const uint8_t BLEANCS_UUID_CHR_CONTROL[]; +extern const uint8_t BLEANCS_UUID_CHR_NOTIFICATION[]; +extern const uint8_t BLEANCS_UUID_CHR_DATA[]; + +// Category ID +enum +{ + ANCS_CAT_OTHER , + ANCS_CAT_INCOMING_CALL , + ANCS_CAT_MISSED_CALL , + ANCS_CAT_VOICE_MAIL , + ANCS_CAT_SOCIAL , + ANCS_CAT_SCHEDULE , + ANCS_CAT_EMAIL , + ANCS_CAT_NEWS , + ANCS_CAT_HEALTH_AND_FITNESS , + ANCS_CAT_BUSSINESS_AND_FINANCE , + ANCS_CAT_LOCATION , + ANCS_CAT_ENTERTAINMENT +}; + +// Event ID +enum +{ + ANCS_EVT_NOTIFICATION_ADDED , + ANCS_EVT_NOTIFICATION_MODIFIED , + ANCS_EVT_NOTIFICATION_REMOVED +}; + +// Command ID +enum +{ + ANCS_CMD_GET_NOTIFICATION_ATTR , + ANCS_CMD_GET_APP_ATTR , + ANCS_CMD_PERFORM_NOTIFICATION_ACTION +}; + +// Notification Attribute ID +enum +{ + ANCS_ATTR_APP_IDENTIFIER , + ANCS_ATTR_TITLE , // followed bye 2-byte length + ANCS_ATTR_SUBTITLE , // followed bye 2-byte length + ANCS_ATTR_MESSAGE , // followed bye 2-byte length + ANCS_ATTR_MESSAGE_SIZE , + ANCS_ATTR_DATE , // UTC#35 yyyyMMdd'T'HHmmSS + ANCS_ATTR_POSITIVE_ACTION_LABEL , + ANCS_ATTR_NEGATIVE_ACTION_LABEL , + + ANCS_ATTR_INVALID +}; + +// Action ID +enum +{ + ANCS_ACTION_POSITIVE, + ANCS_ACTION_NEGATIVE +}; + +// Application Attribute ID +enum +{ + ANCS_APP_ATTR_DISPLAY_NAME, + + ANCS_APP_ATTR_INVALID +}; + +typedef struct +{ + uint8_t eventID; + + struct ATTR_PACKED + { + uint8_t silent : 1; + uint8_t important : 1; + uint8_t preExisting : 1; + uint8_t positiveAction : 1; + uint8_t NegativeAction : 1; + }eventFlags; + + uint8_t categoryID; + uint8_t categoryCount; + uint32_t uid; +} AncsNotification_t; + +VERIFY_STATIC( sizeof(AncsNotification_t) == 8); + +class BLEAncs : public BLEClientService +{ + public: + typedef void (*notification_callback_t) (AncsNotification_t* notif); + + BLEAncs(void); + + virtual bool begin(void); + virtual bool discover(uint16_t conn_handle); + + void setNotificationCallback(notification_callback_t fp); + bool enableNotification(void); + bool disableNotification(void); + + // Main commands + uint16_t getAttribute (uint32_t uid, uint8_t attr, void* buffer, uint16_t bufsize); + uint16_t getAppAttribute (const char* appid, uint8_t attr, void* buffer, uint16_t bufsize); + bool performAction (uint32_t uid, uint8_t actionid); + + // High Level helper + uint16_t getAppName (uint32_t uid, void* buffer, uint16_t bufsize); + uint16_t getAppID (uint32_t uid, void* buffer, uint16_t bufsize); + uint16_t getTitle (uint32_t uid, void* buffer, uint16_t bufsize); + uint16_t getSubtitle (uint32_t uid, void* buffer, uint16_t bufsize); + uint16_t getMessage (uint32_t uid, void* buffer, uint16_t bufsize); + uint16_t getMessageSize (uint32_t uid); + uint16_t getDate (uint32_t uid, void* buffer, uint16_t bufsize); + uint16_t getPosActionLabel (uint32_t uid, void* buffer, uint16_t bufsize); + uint16_t getNegActionLabel (uint32_t uid, void* buffer, uint16_t bufsize); + + bool actPositive (uint32_t uid); + bool actNegative (uint32_t uid); + + private: + BLEClientCharacteristic _control; + BLEClientCharacteristic _notification; + BLEClientCharacteristic _data; + + notification_callback_t _notif_cb; + + AdaMsg _adamsg; + + void _handleNotification(uint8_t* data, uint16_t len); + void _handleData(uint8_t* data, uint16_t len); + + friend void bleancs_notification_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); + friend void bleancs_data_cb (BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); +}; + + +#endif /* BLEANCS_H_ */ diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientBas.cpp b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientBas.cpp new file mode 100755 index 0000000..d0d8d07 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientBas.cpp @@ -0,0 +1,87 @@ +/**************************************************************************/ +/*! + @file BLEClientBas.cpp + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2019, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#include "bluefruit.h" + +BLEClientBas::BLEClientBas(void) + : BLEClientService(UUID16_SVC_BATTERY), _battery(UUID16_CHR_BATTERY_LEVEL) +{ + +} + +bool BLEClientBas::begin(void) +{ + // Invoke base class begin() + BLEClientService::begin(); + + _battery.begin(this); + + return true; +} + +bool BLEClientBas::discover(uint16_t conn_handle) +{ + // Call BLECentralService discover + VERIFY( BLEClientService::discover(conn_handle) ); + _conn_hdl = BLE_CONN_HANDLE_INVALID; // make as invalid until we found all chars + + // Discover TXD, RXD characteristics + VERIFY( 1 == Bluefruit.Discovery.discoverCharacteristic(conn_handle, _battery) ); + + _conn_hdl = conn_handle; + return true; +} + +uint8_t BLEClientBas::read(void) +{ + return _battery.read8(); +} + +bool BLEClientBas::enableNotify(void) +{ + return _battery.enableNotify(); +} + +bool BLEClientBas::disableNotify(void) +{ + return _battery.disableNotify(); +} + +void BLEClientBas::setNotifyCallback(BLEClientCharacteristic::notify_cb_t fp, bool useAdaCallback) +{ + return _battery.setNotifyCallback(fp, useAdaCallback); +} + diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientBas.h b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientBas.h new file mode 100755 index 0000000..5eadc4f --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientBas.h @@ -0,0 +1,63 @@ +/**************************************************************************/ +/*! + @file BLEClientBas.h + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2019, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#ifndef BLECLIENTBAS_H_ +#define BLECLIENTBAS_H_ + +#include "bluefruit_common.h" +#include "BLEClientCharacteristic.h" +#include "BLEClientService.h" + +class BLEClientBas : public BLEClientService +{ + public: + BLEClientBas(void); + + virtual bool begin(void); + virtual bool discover(uint16_t conn_handle); + + uint8_t read(void); + + bool enableNotify(void); + bool disableNotify(void); + + void setNotifyCallback(BLEClientCharacteristic::notify_cb_t fp, bool useAdaCallback = true); + + private: + BLEClientCharacteristic _battery; +}; + +#endif /* BLECLIENTBAS_H_ */ diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientCts.cpp b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientCts.cpp new file mode 100755 index 0000000..d88ef62 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientCts.cpp @@ -0,0 +1,113 @@ +/**************************************************************************/ +/*! + @file BLEClientCts.cpp + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#include "bluefruit.h" + +void blects_central_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); + +BLEClientCts::BLEClientCts(void) + : BLEClientService(UUID16_SVC_CURRENT_TIME), _cur_time(UUID16_CHR_CURRENT_TIME), _local_info(UUID16_CHR_LOCAL_TIME_INFORMATION) +{ + varclr(&Time); + varclr(&LocalInfo); + + _adjust_cb = NULL; +} + +bool BLEClientCts::begin(void) +{ + VERIFY_STATIC(sizeof(Time) == 10); + VERIFY_STATIC(sizeof(LocalInfo) == 2); + + // Invoke base class begin() + BLEClientService::begin(); + + _cur_time.begin(this); + _cur_time.setNotifyCallback(blects_central_notify_cb); + + _local_info.begin(this); + + return true; +} + +bool BLEClientCts::discover(uint16_t conn_handle) +{ + // Call Base class discover + VERIFY( BLEClientService::discover(conn_handle) ); + _conn_hdl = BLE_CONN_HANDLE_INVALID; // make as invalid until we found all chars + + // Discover characteristics + Bluefruit.Discovery.discoverCharacteristic(conn_handle, _cur_time, _local_info); + + // Current Time chars is mandatory + VERIFY( _cur_time.valueHandle() != BLE_GATT_HANDLE_INVALID, false); + + _conn_hdl = conn_handle; + return true; +} + +bool BLEClientCts::getCurrentTime(void) +{ + return _cur_time.read(&Time, sizeof(Time)) > 0; +} + +bool BLEClientCts::getLocalTimeInfo(void) +{ + return _local_info.read(&LocalInfo, sizeof(LocalInfo)) > 0; +} + +bool BLEClientCts::enableAdjust(void) +{ + return _cur_time.enableNotify(); +} + +void BLEClientCts::setAdjustCallback(adjust_callback_t fp) +{ + _adjust_cb = fp; +} + +void BLEClientCts::_cur_time_notify_cb(uint8_t* data, uint16_t len) +{ + memcpy(&Time, data, len); + + // invoked callback if set + if ( _adjust_cb ) _adjust_cb( Time.adjust_reason ); +} + +void blects_central_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len) +{ + ((BLEClientCts&) chr->parentService())._cur_time_notify_cb(data, len); +} diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientCts.h b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientCts.h new file mode 100755 index 0000000..872a869 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientCts.h @@ -0,0 +1,93 @@ +/**************************************************************************/ +/*! + @file BLEClientCts.h + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ +#ifndef BLECLIENTCTS_H_ +#define BLECLIENTCTS_H_ + +#include "bluefruit_common.h" +#include "BLEClientCharacteristic.h" +#include "BLEClientService.h" + +class BLEClientCts : public BLEClientService +{ + public: + // Callback Signatures + typedef void (*adjust_callback_t) (uint8_t reason); + + BLEClientCts(void); + + virtual bool begin(void); + virtual bool discover(uint16_t conn_handle); + + bool getCurrentTime(void); + bool getLocalTimeInfo(void); + + bool enableAdjust(void); + void setAdjustCallback(adjust_callback_t fp); + + // https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.characteristic.current_time.xml + struct ATTR_PACKED { + uint16_t year; + uint8_t month; + uint8_t day; + uint8_t hour; + uint8_t minute; + uint8_t second; + uint8_t weekday; + uint8_t subsecond; + uint8_t adjust_reason; + } Time; + + // https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.characteristic.local_time_information.xml + struct ATTR_PACKED { + int8_t timezone; + uint8_t dst_offset; + }LocalInfo; + + /*------------------------------------------------------------------*/ + /* INTERNAL USAGE ONLY + * Although declare as public, it is meant to be invoked by internal + * code. User should not call these directly + *------------------------------------------------------------------*/ + void _cur_time_notify_cb(uint8_t* data, uint16_t len); + + private: + BLEClientCharacteristic _cur_time; + BLEClientCharacteristic _local_info; + + adjust_callback_t _adjust_cb; +}; + +#endif /* BLECLIENTCTS_H_ */ diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientDis.cpp b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientDis.cpp new file mode 100755 index 0000000..2a9b387 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientDis.cpp @@ -0,0 +1,111 @@ +/**************************************************************************/ +/*! + @file BLEClientDis.cpp + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#include "bluefruit.h" + +BLEClientDis::BLEClientDis(void) + : BLEClientService(UUID16_SVC_DEVICE_INFORMATION) +{ + +} + +bool BLEClientDis::begin(void) +{ + // Invoke base class begin() + BLEClientService::begin(); + + return true; +} + +bool BLEClientDis::discover(uint16_t conn_handle) +{ + // Call BLECentralService discover + VERIFY( BLEClientService::discover(conn_handle) ); + + return true; +} + +uint16_t BLEClientDis::getChars(uint16_t uuid, char* buffer, uint16_t bufsize) +{ + uint16_t count = 0; + ble_gattc_handle_range_t bck_range = Bluefruit.Discovery.getHandleRange(); + + // Set discovery handle to DIS service + Bluefruit.Discovery.setHandleRange(_hdl_range); + + BLEClientCharacteristic chr(uuid); + chr.begin(this); + + if ( Bluefruit.Discovery.discoverCharacteristic(_conn_hdl, chr) ) + { + count = chr.read(buffer, bufsize); + } + + // Set back + Bluefruit.Discovery.setHandleRange(bck_range); + + return count; +} + +uint16_t BLEClientDis::getModel(char* buffer, uint16_t bufsize) +{ + return getChars(UUID16_CHR_MODEL_NUMBER_STRING, buffer, bufsize); +} + +uint16_t BLEClientDis::getSerial(char* buffer, uint16_t bufsize) +{ + return getChars(UUID16_CHR_SERIAL_NUMBER_STRING, buffer, bufsize); +} + +uint16_t BLEClientDis::getFirmwareRev(char* buffer, uint16_t bufsize) +{ + return getChars(UUID16_CHR_FIRMWARE_REVISION_STRING, buffer, bufsize); +} + +uint16_t BLEClientDis::getHardwareRev(char* buffer, uint16_t bufsize) +{ + return getChars(UUID16_CHR_HARDWARE_REVISION_STRING, buffer, bufsize); +} + +uint16_t BLEClientDis::getSoftwareRev(char* buffer, uint16_t bufsize) +{ + return getChars(UUID16_CHR_SOFTWARE_REVISION_STRING, buffer, bufsize); +} + +uint16_t BLEClientDis::getManufacturer(char* buffer, uint16_t bufsize) +{ + return getChars(UUID16_CHR_MANUFACTURER_NAME_STRING, buffer, bufsize); +} diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientDis.h b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientDis.h new file mode 100755 index 0000000..056c6d8 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientDis.h @@ -0,0 +1,69 @@ +/**************************************************************************/ +/*! + @file BLEClientDis.h + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#ifndef BLECLIENTDIS_H_ +#define BLECLIENTDIS_H_ + +#include "bluefruit_common.h" +#include "BLEClientCharacteristic.h" +#include "BLEClientService.h" + +class BLEClientDis : public BLEClientService +{ + public: + BLEClientDis(void); + + virtual bool begin(void); + virtual bool discover(uint16_t conn_handle); + + uint16_t getChars(uint16_t uuid, char* buffer, uint16_t bufsize); + + uint16_t getModel (char* buffer, uint16_t bufsize); + uint16_t getSerial (char* buffer, uint16_t bufsize); + uint16_t getFirmwareRev (char* buffer, uint16_t bufsize); + uint16_t getHardwareRev (char* buffer, uint16_t bufsize); + uint16_t getSoftwareRev (char* buffer, uint16_t bufsize); + uint16_t getManufacturer(char* buffer, uint16_t bufsize); + + private: + + // BLE DIS has several characteristics but is often used one or two times + // It is better to implement get() with on-the-fly BLEClientCharacteristic +}; + + + +#endif /* BLECLIENTDIS_H_ */ diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.cpp b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.cpp new file mode 100755 index 0000000..cd5cfe4 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.cpp @@ -0,0 +1,194 @@ +/**************************************************************************/ +/*! + @file BLEClientHidAdafruit.cpp + @author hathach (tinyusb.org) (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#include "bluefruit.h" + +BLEClientHidAdafruit::BLEClientHidAdafruit(void) + : BLEClientService(UUID16_SVC_HUMAN_INTERFACE_DEVICE), + _protcol_mode(UUID16_CHR_PROTOCOL_MODE), + _kbd_boot_input(UUID16_CHR_BOOT_KEYBOARD_INPUT_REPORT), _kbd_boot_output(UUID16_CHR_BOOT_KEYBOARD_OUTPUT_REPORT), + _mse_boot_input(UUID16_CHR_BOOT_MOUSE_INPUT_REPORT), + _hid_info(UUID16_CHR_HID_INFORMATION), _hid_control(UUID16_CHR_HID_CONTROL_POINT) +{ + _kbd_cb = NULL; + _mse_cb = NULL; + varclr(&_last_kbd_report); + varclr(&_last_mse_report); +} + + +void kbd_client_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len) +{ + BLEClientHidAdafruit& svc = (BLEClientHidAdafruit&) chr->parentService(); + svc._handle_kbd_input(data, len); +} + +void mse_client_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len) +{ + BLEClientHidAdafruit& svc = (BLEClientHidAdafruit&) chr->parentService(); + svc._handle_mse_input(data, len); +} + + +bool BLEClientHidAdafruit::begin(void) +{ + // Invoke base class begin() + BLEClientService::begin(); + + _protcol_mode.begin(this); + _hid_info.begin(this); + _hid_control.begin(this); + + _kbd_boot_input.begin(this); + _kbd_boot_output.begin(this); + + _mse_boot_input.begin(this); + + + // set notify callback + _kbd_boot_input.setNotifyCallback(kbd_client_notify_cb); + _mse_boot_input.setNotifyCallback(mse_client_notify_cb); +} + +void BLEClientHidAdafruit::setKeyboardReportCallback(kbd_callback_t fp) +{ + _kbd_cb = fp; +} + +void BLEClientHidAdafruit::setMouseReportCallback(mse_callback_t fp) +{ + _mse_cb = fp; +} + +bool BLEClientHidAdafruit::discover(uint16_t conn_handle) +{ + // Call Base class discover + VERIFY( BLEClientService::discover(conn_handle) ); + _conn_hdl = BLE_CONN_HANDLE_INVALID; // make as invalid until we found all chars + + // Discover all characteristics + Bluefruit.Discovery.discoverCharacteristic(conn_handle, _protcol_mode, _kbd_boot_input, _kbd_boot_output, _mse_boot_input, _hid_info, _hid_control); + + VERIFY( _protcol_mode.discovered() && _hid_info.discovered() && _hid_control.discovered() ); + VERIFY ( keyboardPresent() || mousePresent() ); + + _conn_hdl = conn_handle; + return true; +} + +/*------------------------------------------------------------------*/ +/* Info + *------------------------------------------------------------------*/ +bool BLEClientHidAdafruit::getHidInfo(uint8_t info[4]) +{ + return 4 == _hid_info.read(info, 4); +} + +uint8_t BLEClientHidAdafruit::getCountryCode(void) +{ + uint8_t info[4] = { 0 }; + getHidInfo(info); + + return info[2]; +} + +bool BLEClientHidAdafruit::setProtocolMode(uint8_t mode) +{ + return _protcol_mode.write8(mode); +} + +/*------------------------------------------------------------------*/ +/* Keyboard + *------------------------------------------------------------------*/ +bool BLEClientHidAdafruit::keyboardPresent(void) +{ + return _kbd_boot_input.discovered() && _kbd_boot_output.discovered(); +} + +bool BLEClientHidAdafruit::enableKeyboard(void) +{ + _kbd_boot_input.enableNotify(); +} + +bool BLEClientHidAdafruit::disableKeyboard(void) +{ + _kbd_boot_input.disableNotify(); +} + +void BLEClientHidAdafruit::_handle_kbd_input(uint8_t* data, uint16_t len) +{ + varclr(&_last_kbd_report); + memcpy(&_last_kbd_report, data, len); + + if ( _kbd_cb ) _kbd_cb(&_last_kbd_report); +} + +void BLEClientHidAdafruit::getKeyboardReport(hid_keyboard_report_t* report) +{ + memcpy(report, &_last_kbd_report, sizeof(hid_keyboard_report_t)); +} + +/*------------------------------------------------------------------*/ +/* Mouse + *------------------------------------------------------------------*/ +bool BLEClientHidAdafruit::mousePresent(void) +{ + return _mse_boot_input.discovered(); +} + +bool BLEClientHidAdafruit::enableMouse(void) +{ + _mse_boot_input.enableNotify(); +} + +bool BLEClientHidAdafruit::disableMouse(void) +{ + _mse_boot_input.disableNotify(); +} + +void BLEClientHidAdafruit::_handle_mse_input(uint8_t* data, uint16_t len) +{ + varclr(&_last_mse_report); + memcpy(&_last_mse_report, data, len); + + if ( _mse_cb ) _mse_cb(&_last_mse_report); +} + +void BLEClientHidAdafruit::getMouseReport(hid_mouse_report_t* report) +{ + memcpy(report, &_last_mse_report, sizeof(hid_mouse_report_t)); +} + diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.h b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.h new file mode 100755 index 0000000..04140bc --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientHidAdafruit.h @@ -0,0 +1,107 @@ +/**************************************************************************/ +/*! + @file BLEClientHidAdafruit.h + @author hathach (tinyusb.org) (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ +#ifndef BLECLIENTHIDADAFRUIT_H_ +#define BLECLIENTHIDADAFRUIT_H_ + +#include "bluefruit_common.h" +#include "BLEClientCharacteristic.h" +#include "BLEClientService.h" + +#include "services/BLEHidGeneric.h" + +// Only support Boot Keyboard and/or Boot Mouse, there is no Consumer Control support +class BLEClientHidAdafruit : public BLEClientService +{ + public: + // Callback Signatures + typedef void (*kbd_callback_t ) (hid_keyboard_report_t* report); + typedef void (*mse_callback_t ) (hid_mouse_report_t* report); + + BLEClientHidAdafruit(void); + + virtual bool begin(void); + virtual bool discover(uint16_t conn_handle); + + bool getHidInfo(uint8_t info[4]); + uint8_t getCountryCode(void); + + bool setProtocolMode(uint8_t mode); + + // Keyboard API + bool keyboardPresent(void); + bool enableKeyboard(void); + bool disableKeyboard(void); + + void getKeyboardReport(hid_keyboard_report_t* report); + + // Mouse API + bool mousePresent(void); + bool enableMouse(void); + bool disableMouse(void); + + void getMouseReport(hid_mouse_report_t* report); + + // Report callback + void setKeyboardReportCallback(kbd_callback_t fp); + void setMouseReportCallback(mse_callback_t fp); + + protected: + kbd_callback_t _kbd_cb; + mse_callback_t _mse_cb; + + hid_keyboard_report_t _last_kbd_report; + hid_mouse_report_t _last_mse_report; + + // Only support Boot protocol for keyboard and Mouse + BLEClientCharacteristic _protcol_mode; + BLEClientCharacteristic _hid_info; + BLEClientCharacteristic _hid_control; + + BLEClientCharacteristic _kbd_boot_input; + BLEClientCharacteristic _kbd_boot_output; + + BLEClientCharacteristic _mse_boot_input; + + void _handle_kbd_input(uint8_t* data, uint16_t len); + void _handle_mse_input(uint8_t* data, uint16_t len); + + friend void kbd_client_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); + friend void mse_client_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); +}; + + + +#endif /* BLECLIENTHIDADAFRUIT_H_ */ diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientUart.cpp b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientUart.cpp new file mode 100755 index 0000000..9ba507e --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientUart.cpp @@ -0,0 +1,147 @@ +/**************************************************************************/ +/*! + @file BLEClientUart.cpp + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ + +#include "bluefruit.h" + +void bleuart_central_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); + +BLEClientUart::BLEClientUart(uint16_t fifo_depth) + : BLEClientService(BLEUART_UUID_SERVICE), _txd(BLEUART_UUID_CHR_TXD), _rxd(BLEUART_UUID_CHR_RXD), + _rx_fifo(1, fifo_depth) +{ + _rx_cb = NULL; +} + +bool BLEClientUart::begin(void) +{ + _rx_fifo.begin(); + + // Invoke base class begin() + BLEClientService::begin(); + + _rxd.begin(this); + _txd.begin(this); + + // set up notify callback + _txd.setNotifyCallback(bleuart_central_notify_cb); + + return true; +} + +bool BLEClientUart::enableTXD(void) +{ + return _txd.enableNotify(); +} + +bool BLEClientUart::disableTXD(void) +{ + return _txd.disableNotify(); +} + +void BLEClientUart::setRxCallback( rx_callback_t fp) +{ + _rx_cb = fp; +} + +bool BLEClientUart::discover(uint16_t conn_handle) +{ + // Call Base class discover + VERIFY( BLEClientService::discover(conn_handle) ); + _conn_hdl = BLE_CONN_HANDLE_INVALID; // make as invalid until we found all chars + + // Discover TXD, RXD characteristics + VERIFY( 2 == Bluefruit.Discovery.discoverCharacteristic(conn_handle, _rxd, _txd) ); + + _conn_hdl = conn_handle; + return true; +} + +void BLEClientUart::disconnect(void) +{ + BLEClientService::disconnect(); + + flush(); +} + +void bleuart_central_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len) +{ + BLEClientUart& uart_svc = (BLEClientUart&) chr->parentService(); + uart_svc._rx_fifo.write(data, len); + + // invoke callback + if ( uart_svc._rx_cb ) uart_svc._rx_cb(uart_svc); +} + +/*------------------------------------------------------------------*/ +/* STREAM API + *------------------------------------------------------------------*/ +int BLEClientUart::read (void) +{ + uint8_t ch; + return read(&ch, 1) ? (int) ch : EOF; +} + +int BLEClientUart::read (uint8_t * buf, size_t size) +{ + return _rx_fifo.read(buf, size); +} + +size_t BLEClientUart::write (uint8_t b) +{ + return write(&b, 1); +} + +size_t BLEClientUart::write (const uint8_t *content, size_t len) +{ + // write without response + return _rxd.write(content, len); +} + +int BLEClientUart::available (void) +{ + return _rx_fifo.count(); +} + +int BLEClientUart::peek (void) +{ + uint8_t ch; + return _rx_fifo.peek(&ch) ? (int) ch : EOF; +} + +void BLEClientUart::flush (void) +{ + _rx_fifo.clear(); +} diff --git a/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientUart.h b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientUart.h new file mode 100755 index 0000000..168a172 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/src/clients/BLEClientUart.h @@ -0,0 +1,89 @@ +/**************************************************************************/ +/*! + @file BLECentralUart.h + @author hathach (tinyusb.org) + + @section LICENSE + + Software License Agreement (BSD License) + + Copyright (c) 2018, Adafruit Industries (adafruit.com) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holders nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +/**************************************************************************/ +#ifndef BLECLIENTUART_H_ +#define BLECLIENTUART_H_ + +#include "bluefruit_common.h" +#include "utility/adafruit_fifo.h" + +#include "BLEClientCharacteristic.h" +#include "BLEClientService.h" + +#include "services/BLEUart.h" + +class BLEClientUart : public BLEClientService, public Stream +{ + public: + // Callback Signatures + typedef void (*rx_callback_t) (BLEClientUart& svc); + + BLEClientUart(uint16_t fifo_depth = BLE_UART_DEFAULT_FIFO_DEPTH); + + virtual bool begin(void); + virtual bool discover(uint16_t conn_handle); + + void setRxCallback( rx_callback_t fp); + + bool enableTXD(void); + bool disableTXD(void); + + // Stream API + virtual int read ( void ); + virtual int read ( uint8_t * buf, size_t size ); + int read ( char * buf, size_t size ) { return read( (uint8_t*) buf, size); } + virtual size_t write ( uint8_t b ); + virtual size_t write ( const uint8_t *content, size_t len ); + virtual int available ( void ); + virtual int peek ( void ); + virtual void flush ( void ); + + // pull in write(str) and write(buf, size) from Print + using Print::write; + + protected: + virtual void disconnect(void); + + private: + BLEClientCharacteristic _txd; + BLEClientCharacteristic _rxd; + + Adafruit_FIFO _rx_fifo; + rx_callback_t _rx_cb; + + friend void bleuart_central_notify_cb(BLEClientCharacteristic* chr, uint8_t* data, uint16_t len); +}; + +#endif /* BLECLIENTUART_H_ */ |