1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #include "bs_cmd_line.h" 7 #include "bs_tracing.h" 8 get_device_nbr(void)9__attribute__((weak)) unsigned int get_device_nbr(void) { 10 return 0; 11 } 12 bs_add_extra_dynargs(bs_args_struct_t * args_struct_toadd)13__attribute__((weak)) void bs_add_extra_dynargs(bs_args_struct_t *args_struct_toadd){ 14 bs_trace_warning_line("%s: The integrating program is expected to provide this API." 15 "This weak function should not have been called\n", __func__); 16 } 17