16 lines
200 B
C
16 lines
200 B
C
|
/*
|
||
|
* Copyright (c) 2022 hpmicro
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
#ifndef DRV_DAO_H
|
||
|
#define DRV_DAO_H
|
||
|
|
||
|
#define DAO_FIFO_SIZE (2048)
|
||
|
|
||
|
int rt_hw_dao_init(void);
|
||
|
|
||
|
#endif /* DRV_DAO_H */
|
||
|
|