1 /* board.h - Board-specific hooks */ 2 3 /* 4 * Copyright (c) 2017 Intel Corporation 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9 void board_output_number(bt_mesh_output_action_t action, uint32_t number); 10 11 void board_prov_complete(void); 12 13 int board_init(struct k_work *button_work); 14 15 void board_led_set(bool val); 16