Samples peripheral_gatt_write and central_gatt_write to demonstration use of GATT Write Command. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
15 lines
228 B
C
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);
|
|
}
|