1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include "rd_alarm_idx.h"
9 
10 #include <mod_debugger_cli.h>
11 
12 #include <fwk_module_idx.h>
13 
14 /*
15  * Data for the debugger CLI module configuration
16  */
17 static const struct mod_debugger_cli_module_config debugger_cli_data = {
18     .alarm_id =
19         FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_TIMER, 0, RD_DEBUGGER_CLI_IDX),
20     .poll_period = 100
21 };
22 
23 /*
24  * Configuration for the debugger CLI module
25  */
26 struct fwk_module_config config_debugger_cli = { .data = &debugger_cli_data };
27