Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Hello_BLE F446RE-BLE
Fork of X_NUCLEO_IDB0XA1 by
Diff: btle/src/btle.cpp
- Revision:
- 0:309c845d289d
- Child:
- 2:a2b623661316
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/btle/src/btle.cpp Wed Jul 16 04:59:51 2014 +0000 @@ -0,0 +1,169 @@ +/* mbed Microcontroller Library + * Copyright (c) 2006-2013 ARM Limited + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +#include "btle.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* C File Includes ------------------------------------------------------------------*/ +#include "hal_types.h" +#include "hci.h" +#include "bluenrg_hci.h" +#include "gp_timer.h" +#include "hal.h" +#include "osal.h" +#include "hci_internal.h" +#include "bluenrg_hci_internal.h" +#include "gap.h" +#include "sm.h" +#include <stdio.h> +#include <string.h> +#include <stm32l0xx_bluenrg_shield_bsp.h> +//#include "sensor_service.h" +#include "role_type.h" +#include "debug.h" + +/* SPI handler declaration */ +SPI_HandleTypeDef SpiHandle; + +#ifdef __cplusplus + } +#endif + + +static void btle_handler(/*ble_evt_t * p_ble_evt*/); +void HCI_Input(tHciDataPacket * hciReadPacket); + +#define BDADDR_SIZE 6 +tHalUint8 bdaddr[BDADDR_SIZE]= {0xaa, 0x00, 0x00, 0xE1, 0x80, 0x02}; + +/* Private variables ---------------------------------------------------------*/ +volatile uint8_t set_connectable = 1; + +/**************************************************************************/ +/*! + @brief Initialises BTLE and the underlying HW/SoftDevice + + @returns +*/ +/**************************************************************************/ +void btle_init(void) +{ + const char *name = "BlueNRG"; + tHalUint8 SERVER_BDADDR[] = {0x12, 0x34, 0x00, 0xE1, 0x80, 0x02};//MPD: This is the public address of the Server/Client + tHalUint8 bdaddr[BDADDR_SIZE]; + int ret; + uint16_t service_handle, dev_name_char_handle, appearance_char_handle; + + HAL_Init(); + + /* Configure LED2 */ + //BSP_LED_Init(LED2); + + /* Configure the User Button in GPIO Mode */ + BSP_PB_Init(BUTTON_KEY, BUTTON_MODE_GPIO); + + /* Configure the system clock */ + SystemClock_Config(); + + /* Delay needed only to be able to acces the JTAG interface after reset + if it will be disabled later. */ + Clock_Wait(500); + + /* Initialize the BlueNRG SPI driver */ + BNRG_SPI_Init(); + + /* Initialize the BlueNRG HCI */ + HCI_Init(); + + /* Reset BlueNRG SPI interface */ + BlueNRG_RST(); + + //BSP_LED_Toggle(LED2); + + /* The Nucleo board must be configured as SERVER */ + Osal_MemCpy(bdaddr, SERVER_BDADDR, sizeof(SERVER_BDADDR)); + + ret = aci_hal_write_config_data(CONFIG_DATA_PUBADDR_OFFSET, + CONFIG_DATA_PUBADDR_LEN, + bdaddr); + + ret = aci_gatt_init(); + + ret = aci_gap_init(GAP_PERIPHERAL_ROLE, &service_handle, &dev_name_char_handle, &appearance_char_handle); + + ret = aci_gatt_update_char_value(service_handle, dev_name_char_handle, 0, + strlen(name), (tHalUint8 *)name); + + return; +} + +void User_Process() +{ + if(set_connectable){ + setConnectable(); + set_connectable = FALSE; + } +} + +void setConnectable(void) +{ + tBleStatus ret; + + const char local_name[] = {AD_TYPE_COMPLETE_LOCAL_NAME,'B','l','u','e','N','R','G'}; + + /* disable scan response */ + hci_le_set_scan_resp_data(0,NULL); + + + ret = aci_gap_set_discoverable(ADV_IND, 0, 0, PUBLIC_ADDR, NO_WHITE_LIST_USE, + 8, local_name, 0, NULL, 0, 0); + +} + +/**************************************************************************/ +/*! + @brief + + @param[in] p_ble_evt + + @returns +*/ +/**************************************************************************/ +static void btle_handler(/*ble_evt_t * p_ble_evt*/) +{ + +} + + +#ifdef __cplusplus +extern "C" { +#endif + +extern void HCI_Event_CB(void *ptr) { + int a=3; + int b=5; + + int sum = a+b; + + return ; + } +#ifdef __cplusplus + } +#endif \ No newline at end of file