1 /*
2  * Copyright (c) 2017 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 void pong_ball_received(int8_t x_pos, int8_t y_pos, int8_t x_vel, int8_t y_vel);
8 void pong_conn_ready(bool initiator);
9 void pong_remote_disconnected(void);
10 void pong_remote_lost(void);
11 
12 void ble_send_ball(int8_t x_pos, int8_t y_pos, int8_t x_vel, int8_t y_vel);
13 void ble_send_lost(void);
14 void ble_connect(void);
15 void ble_cancel_connect(void);
16 void ble_init(void);
17