1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * This file provides utilities related to the device and cli arguments. 7 */ 8 9 10 /* 11 * @brief Get the device's simulation number 12 * 13 * This returns the device's number in the BabbleSim simulation. 14 * Ie will return 1 if the device was started with the "-d 1" argument. 15 * 16 * @return Device number in simulation 17 */ 18 int bk_device_get_number(void); 19