1 /* 2 * Copyright (c) 2023 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stdbool.h> 8 9 char *get_settings_file(void); 10 int get_test_round(void); 11 bool is_final_round(void); 12 13 void signal_next_test_round(void); 14 void wait_for_round_start(void); 15