1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 #ifndef __HAL_PSC_H__ 5 #define __HAL_PSC_H__ 6 7 #ifdef __cplusplus 8 extern "C" { 9 #endif 10 11 #include "stdint.h" 12 13 void hal_psc_init(void); 14 15 void hal_psc_mcu_auto_power_down(void); 16 17 void hal_psc_mcu_auto_power_up(void); 18 19 void hal_psc_codec_enable(void); 20 21 void hal_psc_codec_disable(void); 22 23 void hal_psc_bt_enable(void); 24 25 void hal_psc_bt_disable(void); 26 27 #ifdef __cplusplus 28 } 29 #endif 30 31 #endif 32 33