Searched refs:x_vel (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/samples/boards/bbc/microbit/pong/src/ |
D | pong.h | 7 void pong_ball_received(int8_t x_pos, int8_t y_pos, int8_t x_vel, int8_t y_vel); 12 void ble_send_ball(int8_t x_pos, int8_t y_pos, int8_t x_vel, int8_t y_vel);
|
D | ble.c | 78 int8_t x_vel; member 91 void ble_send_ball(int8_t x_pos, int8_t y_pos, int8_t x_vel, int8_t y_vel) in ble_send_ball() argument 97 .ball.x_vel = x_vel, in ble_send_ball() 107 printk("ble_send_ball(%d, %d, %d, %d)\n", x_pos, y_pos, x_vel, y_vel); in ble_send_ball() 157 data->ball.x_vel, data->ball.y_vel); in notify_func()
|
D | main.c | 391 void pong_ball_received(int8_t x_pos, int8_t y_pos, int8_t x_vel, int8_t y_vel) in pong_ball_received() argument 393 printk("ball_received(%d, %d, %d, %d)\n", x_pos, y_pos, x_vel, y_vel); in pong_ball_received() 397 ball_vel.x = x_vel; in pong_ball_received()
|