1 /*
2  * Copyright (c) 2021 Nuvoton Technology Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _NUVOTON_NPCX_SOC_POWER_H_
8 #define _NUVOTON_NPCX_SOC_POWER_H_
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 /**
15  * @brief Disable UART RX wake-up interrupt.
16  */
17 void npcx_uart_disable_access_interrupt(void);
18 
19 /**
20  * @brief Enable UART RX wake-up interrupt.
21  */
22 void npcx_uart_enable_access_interrupt(void);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* _NUVOTON_NPCX_SOC_POWER_H_ */
29