1 /*
2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6 
7 #ifndef BSP_ADDRESS_EXPANDER_H
8 #define BSP_ADDRESS_EXPANDER_H
9 
10 /** Common macro for FSP header files. There is also a corresponding FSP_FOOTER macro at the end of this file. */
11 FSP_HEADER
12 
13 /***********************************************************************************************************************
14  * Macro definitions
15  **********************************************************************************************************************/
16 
17 /***********************************************************************************************************************
18  * Typedef definitions
19  **********************************************************************************************************************/
20 
21 /*******************************************************************************************************************//**
22  * @addtogroup BSP_MCU
23  * @{
24  **********************************************************************************************************************/
25 
26 /** @} (end addtogroup BSP_MCU) */
27 
28 /***********************************************************************************************************************
29  * Exported global variables
30  **********************************************************************************************************************/
31 
32 /***********************************************************************************************************************
33  * Exported global functions (to be accessed by other files)
34  **********************************************************************************************************************/
35 
36 /* Public functions defined in bsp.h */
37 #if BSP_FEATURE_ADDRESS_EXPANDER_SUPPORTED
38  #if (1 == _RZN_ORDINAL)
39 
40 void bsp_address_expander_init(void);  // Used internally by BSP
41 
42  #endif
43 #endif
44 
45 /** Common macro for FSP header files. There is also a corresponding FSP_HEADER macro at the top of this file. */
46 FSP_FOOTER
47 
48 #endif
49