zephyr-configurator/snippets/ble_gatt/code1.txt
H4CK3R-01 2354da0722
All checks were successful
Build & Publish / build (push) Successful in 8m13s
Added ble code
2023-08-04 10:27:09 +02:00

27 lines
411 B
Plaintext

/* --------------------------- */
/* 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 */
/* --------------------------- */