1 /*
2  * Copyright (c) 2022 HPMicro
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef DRV_PDM_H
8 #define DRV_PDM_H
9 
10 #define PDM_FIFO_SIZE (2048)
11 
12 int rt_hw_pdm_init(void);
13 
14 #endif /* DRV_PDM_H */
15 
16