1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2022, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * Description:
8  *     Debugger CLI module.
9  */
10 
11 #ifndef MOD_DEBUGGER_CLI_H
12 #define MOD_DEBUGGER_CLI_H
13 
14 #include <fwk_module.h>
15 
16 /*!
17  * \brief Debugger CLI module configuration.
18  */
19 struct mod_debugger_cli_module_config {
20     /*!
21      * Element identifier of the alarm used for polling the UART
22      */
23     fwk_id_t alarm_id;
24 
25     /*!
26      * Time period to set for the poll alarm delay (milliseconds)
27      */
28     uint32_t poll_period;
29 };
30 
31 #endif /* MOD_DEBUGGER_CLI_H */
32