zephyr/samples/bluetooth/peripheral_gatt_write/src/main.c
Vinayak Kariappa Chettimada 8e5e0bd45e samples: Bluetooth: peripheral and central GATT write command use
Samples peripheral_gatt_write and central_gatt_write to
demonstration use of GATT Write Command.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
2022-06-22 12:22:29 +02:00

15 lines
228 B
C

/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdint.h>
extern uint32_t peripheral_gatt_write(uint32_t count);
void main(void)
{
(void)peripheral_gatt_write(0U);
}