zephyr-configurator/snippets/ble_gatt/code1.txt

27 lines
411 B
Plaintext
Raw Permalink Normal View History

2023-08-04 08:27:09 +00:00
/* --------------------------- */
/* BLE */
/* --------------------------- */
/* Imports / Declarations */
#include <stdint.h>
/* Functions */
extern uint32_t peripheral_gatt_write(uint32_t count);
/*
Example:
int main(void)
{
(void)peripheral_gatt_write(0U);
return 0;
}
*/
/* --------------------------- */
/* BLE End */
/* --------------------------- */