]> git.sur5r.net Git - freertos/blob
0db762c60ac8e696054a9df0adf6545faa6ceb18
[freertos] /
1 /*
2  * @brief LPC18xx/43xx D/A conversion driver
3  *
4  * @note
5  * Copyright(C) NXP Semiconductors, 2012
6  * All rights reserved.
7  *
8  * @par
9  * Software that is described herein is for illustrative purposes only
10  * which provides customers with programming information regarding the
11  * LPC products.  This software is supplied "AS IS" without any warranties of
12  * any kind, and NXP Semiconductors and its licensor disclaim any and
13  * all warranties, express or implied, including all implied warranties of
14  * merchantability, fitness for a particular purpose and non-infringement of
15  * intellectual property rights.  NXP Semiconductors assumes no responsibility
16  * or liability for the use of the software, conveys no license or rights under any
17  * patent, copyright, mask work right, or any other intellectual property rights in
18  * or to any products. NXP Semiconductors reserves the right to make changes
19  * in the software without notification. NXP Semiconductors also makes no
20  * representation or warranty that such application will be suitable for the
21  * specified use without further testing or modification.
22  *
23  * @par
24  * Permission to use, copy, modify, and distribute this software and its
25  * documentation is hereby granted, under NXP Semiconductors' and its
26  * licensor's relevant copyrights in the software, without fee, provided that it
27  * is used in conjunction with NXP Semiconductors microcontrollers.  This
28  * copyright, permission, and disclaimer notice must appear in all copies of
29  * this code.
30  */
31
32 #ifndef __DAC_18XX_43XX_H_
33 #define __DAC_18XX_43XX_H_
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 /** @defgroup DAC_18XX_43XX CHIP: LPC18xx/43xx D/A conversion driver
40  * @ingroup CHIP_18XX_43XX_Drivers
41  * @{
42  */
43
44 // FIXME LPC_DAC_T *pDAC argument not needed for 18xx/43xx CHIP driver
45
46 /**
47  * @brief       Initial DAC configuration
48  *              - Maximum       current is 700 uA
49  *              - Value to AOUT is 0
50  * @param       pDAC : pointer to LPC_DAC_T
51  * @return      Nothing
52  */
53 void Chip_DAC_Init(LPC_DAC_T *pDAC);
54
55 /**
56  * @brief       Shutdown DAC
57  * @param       pDAC : pointer to LPC_DAC_T
58  * @return      Nothing
59  */
60 void Chip_DAC_DeInit(LPC_DAC_T *pDAC);
61
62 /**
63  * @brief       Update value to DAC buffer
64  * @param       pDAC            : pointer to LPC_DAC_T
65  * @param       dac_value       : value 10 bit to be converted to output
66  * @return      Nothing
67  */
68 STATIC INLINE void Chip_DAC_UpdateValue(LPC_DAC_T *pDAC, uint32_t dac_value)
69 {
70         IP_DAC_UpdateValue(pDAC, dac_value);
71 }
72
73 /**
74  * @brief       Set maximum update rate for DAC
75  * @param       pDAC    : pointer to LPC_DAC_T
76  * @param       bias    : Using Bias value, should be:
77  *              - 0 is 1MHz
78  *              - 1 is 400kHz
79  * @return      Nothing
80  */
81 STATIC INLINE void Chip_DAC_SetBias(LPC_DAC_T *pDAC, uint32_t bias)
82 {
83         IP_DAC_SetBias(pDAC, bias);
84 }
85
86 /**
87  * @brief       Enables the DMA operation and controls DMA timer
88  * @param       pDAC        : pointer to the DAC peripheral block
89  * @param       dacFlags        : An Or'ed value of the following DAC values:
90  *                  - DAC_DBLBUF_ENA :enable/disable DACR double buffering feature
91  *                  - DAC_CNT_ENA    :enable/disable timer out counter
92  *                  - DAC_DMA_ENA    :enable/disable DMA access
93  * @return      Nothing
94  * @note        Pass an Or'ed value of the DAC flags to enable those options.
95  */
96 STATIC INLINE void Chip_DAC_ConfigDAConverterControl(IP_DAC_001_T *pDAC, uint32_t dacFlags)
97 {
98         IP_DAC_ConfigDAConverterControl(pDAC, dacFlags);
99 }
100
101 /**
102  * @brief       Set reload value for interrupt/DMA counter
103  * @param       pDAC            : pointer to LPC_DAC_T
104  * @param       time_out        : time out to reload for interrupt/DMA counter
105  * @return      Nothing
106  */
107 STATIC INLINE void Chip_DAC_SetDMATimeOut(LPC_DAC_T *pDAC, uint32_t time_out)
108 {
109         IP_DAC_SetDMATimeOut(pDAC, time_out);
110 }
111
112 /**
113  * @brief       Get status for interrupt/DMA time out
114  * @param       pDAC            : pointer to LPC_DAC_T
115  * @return      interrupt/DMA time out status, should be SET or RESET
116  */
117 STATIC INLINE IntStatus Chip_DAC_GetIntStatus(LPC_DAC_T *pDAC)
118 {
119         return IP_DAC_GetIntStatus(pDAC);
120 }
121
122 /**
123  * @}
124  */
125
126 #ifdef __cplusplus
127 }
128 #endif
129
130 #endif /* __DAC_18XX_43XX_H_ */