1 /* main.c - Application main entry point */ 2 3 /* 4 * Copyright (c) 2023 Nordic Semiconductor ASA 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9 #include <zephyr/bluetooth/gatt.h> 10 #include <stddef.h> 11 #include <stdint.h> 12 13 extern void run_central_sample(bt_gatt_notify_func_t cb); 14 main(void)15int main(void) 16 { 17 run_central_sample(NULL); 18 return 0; 19 } 20