27 lines
411 B
Plaintext
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 */
|
|
/* --------------------------- */
|
|
|