| /* board.h - Board-specific hooks */ | |
| /* | |
| * Copyright (c) 2017 Intel Corporation | |
| * | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| #if defined(CONFIG_BOARD_BBC_MICROBIT) | |
| void board_output_number(bt_mesh_output_action_t action, uint32_t number); | |
| void board_prov_complete(void); | |
| void board_init(void); | |
| #else | |
| static inline void board_output_number(bt_mesh_output_action_t action, | |
| uint32_t number) | |
| { | |
| } | |
| static inline void board_prov_complete(void) | |
| { | |
| } | |
| static inline void board_init(void) | |
| { | |
| } | |
| #endif |