1 /*
2  * Copyright (c) 2006-2023, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2021-09-09     WCH          the first version
9  * 2022-09-17     hg0720       add some operation function
10  */
11 
12 #ifndef DRV_DAC_H__
13 #define DRV_DAC_H__
14 
15 typedef struct
16 {
17     DAC_TypeDef                   *Instance;
18     DAC_InitTypeDef                Init;
19     rt_uint32_t                    Channel;
20 }DAC_HandleTypeDef;
21 
22 #endif
23