You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
/****************************************************************************
* * This demo showcases creating a GATT database using a predefined attribute table. * It acts as a GATT server and can send adv data, be connected by client. * Run the gatt_client demo, the client demo will automatically connect to the gatt_server_service_table demo. * Client demo will enable GATT server's notify after connection. The two devices will then exchange * data. * ****************************************************************************/ #include "ble_gatts_table.h"
void app_main(void){ ble_init(); }
|