30 #ifndef __STM32F4xx_DAC_H
31 #define __STM32F4xx_DAC_H
38 #include "stm32f4xx.h"
81 #define DAC_Trigger_None ((uint32_t)0x00000000)
83 #define DAC_Trigger_T2_TRGO ((uint32_t)0x00000024)
84 #define DAC_Trigger_T4_TRGO ((uint32_t)0x0000002C)
85 #define DAC_Trigger_T5_TRGO ((uint32_t)0x0000001C)
86 #define DAC_Trigger_T6_TRGO ((uint32_t)0x00000004)
87 #define DAC_Trigger_T7_TRGO ((uint32_t)0x00000014)
88 #define DAC_Trigger_T8_TRGO ((uint32_t)0x0000000C)
90 #define DAC_Trigger_Ext_IT9 ((uint32_t)0x00000034)
91 #define DAC_Trigger_Software ((uint32_t)0x0000003C)
93 #define IS_DAC_TRIGGER(TRIGGER) (((TRIGGER) == DAC_Trigger_None) || \
94 ((TRIGGER) == DAC_Trigger_T6_TRGO) || \
95 ((TRIGGER) == DAC_Trigger_T8_TRGO) || \
96 ((TRIGGER) == DAC_Trigger_T7_TRGO) || \
97 ((TRIGGER) == DAC_Trigger_T5_TRGO) || \
98 ((TRIGGER) == DAC_Trigger_T2_TRGO) || \
99 ((TRIGGER) == DAC_Trigger_T4_TRGO) || \
100 ((TRIGGER) == DAC_Trigger_Ext_IT9) || \
101 ((TRIGGER) == DAC_Trigger_Software))
111 #define DAC_WaveGeneration_None ((uint32_t)0x00000000)
112 #define DAC_WaveGeneration_Noise ((uint32_t)0x00000040)
113 #define DAC_WaveGeneration_Triangle ((uint32_t)0x00000080)
114 #define IS_DAC_GENERATE_WAVE(WAVE) (((WAVE) == DAC_WaveGeneration_None) || \
115 ((WAVE) == DAC_WaveGeneration_Noise) || \
116 ((WAVE) == DAC_WaveGeneration_Triangle))
125 #define DAC_LFSRUnmask_Bit0 ((uint32_t)0x00000000)
126 #define DAC_LFSRUnmask_Bits1_0 ((uint32_t)0x00000100)
127 #define DAC_LFSRUnmask_Bits2_0 ((uint32_t)0x00000200)
128 #define DAC_LFSRUnmask_Bits3_0 ((uint32_t)0x00000300)
129 #define DAC_LFSRUnmask_Bits4_0 ((uint32_t)0x00000400)
130 #define DAC_LFSRUnmask_Bits5_0 ((uint32_t)0x00000500)
131 #define DAC_LFSRUnmask_Bits6_0 ((uint32_t)0x00000600)
132 #define DAC_LFSRUnmask_Bits7_0 ((uint32_t)0x00000700)
133 #define DAC_LFSRUnmask_Bits8_0 ((uint32_t)0x00000800)
134 #define DAC_LFSRUnmask_Bits9_0 ((uint32_t)0x00000900)
135 #define DAC_LFSRUnmask_Bits10_0 ((uint32_t)0x00000A00)
136 #define DAC_LFSRUnmask_Bits11_0 ((uint32_t)0x00000B00)
137 #define DAC_TriangleAmplitude_1 ((uint32_t)0x00000000)
138 #define DAC_TriangleAmplitude_3 ((uint32_t)0x00000100)
139 #define DAC_TriangleAmplitude_7 ((uint32_t)0x00000200)
140 #define DAC_TriangleAmplitude_15 ((uint32_t)0x00000300)
141 #define DAC_TriangleAmplitude_31 ((uint32_t)0x00000400)
142 #define DAC_TriangleAmplitude_63 ((uint32_t)0x00000500)
143 #define DAC_TriangleAmplitude_127 ((uint32_t)0x00000600)
144 #define DAC_TriangleAmplitude_255 ((uint32_t)0x00000700)
145 #define DAC_TriangleAmplitude_511 ((uint32_t)0x00000800)
146 #define DAC_TriangleAmplitude_1023 ((uint32_t)0x00000900)
147 #define DAC_TriangleAmplitude_2047 ((uint32_t)0x00000A00)
148 #define DAC_TriangleAmplitude_4095 ((uint32_t)0x00000B00)
150 #define IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE(VALUE) (((VALUE) == DAC_LFSRUnmask_Bit0) || \
151 ((VALUE) == DAC_LFSRUnmask_Bits1_0) || \
152 ((VALUE) == DAC_LFSRUnmask_Bits2_0) || \
153 ((VALUE) == DAC_LFSRUnmask_Bits3_0) || \
154 ((VALUE) == DAC_LFSRUnmask_Bits4_0) || \
155 ((VALUE) == DAC_LFSRUnmask_Bits5_0) || \
156 ((VALUE) == DAC_LFSRUnmask_Bits6_0) || \
157 ((VALUE) == DAC_LFSRUnmask_Bits7_0) || \
158 ((VALUE) == DAC_LFSRUnmask_Bits8_0) || \
159 ((VALUE) == DAC_LFSRUnmask_Bits9_0) || \
160 ((VALUE) == DAC_LFSRUnmask_Bits10_0) || \
161 ((VALUE) == DAC_LFSRUnmask_Bits11_0) || \
162 ((VALUE) == DAC_TriangleAmplitude_1) || \
163 ((VALUE) == DAC_TriangleAmplitude_3) || \
164 ((VALUE) == DAC_TriangleAmplitude_7) || \
165 ((VALUE) == DAC_TriangleAmplitude_15) || \
166 ((VALUE) == DAC_TriangleAmplitude_31) || \
167 ((VALUE) == DAC_TriangleAmplitude_63) || \
168 ((VALUE) == DAC_TriangleAmplitude_127) || \
169 ((VALUE) == DAC_TriangleAmplitude_255) || \
170 ((VALUE) == DAC_TriangleAmplitude_511) || \
171 ((VALUE) == DAC_TriangleAmplitude_1023) || \
172 ((VALUE) == DAC_TriangleAmplitude_2047) || \
173 ((VALUE) == DAC_TriangleAmplitude_4095))
182 #define DAC_OutputBuffer_Enable ((uint32_t)0x00000000)
183 #define DAC_OutputBuffer_Disable ((uint32_t)0x00000002)
184 #define IS_DAC_OUTPUT_BUFFER_STATE(STATE) (((STATE) == DAC_OutputBuffer_Enable) || \
185 ((STATE) == DAC_OutputBuffer_Disable))
194 #define DAC_Channel_1 ((uint32_t)0x00000000)
195 #define DAC_Channel_2 ((uint32_t)0x00000010)
196 #define IS_DAC_CHANNEL(CHANNEL) (((CHANNEL) == DAC_Channel_1) || \
197 ((CHANNEL) == DAC_Channel_2))
206 #define DAC_Align_12b_R ((uint32_t)0x00000000)
207 #define DAC_Align_12b_L ((uint32_t)0x00000004)
208 #define DAC_Align_8b_R ((uint32_t)0x00000008)
209 #define IS_DAC_ALIGN(ALIGN) (((ALIGN) == DAC_Align_12b_R) || \
210 ((ALIGN) == DAC_Align_12b_L) || \
211 ((ALIGN) == DAC_Align_8b_R))
220 #define DAC_Wave_Noise ((uint32_t)0x00000040)
221 #define DAC_Wave_Triangle ((uint32_t)0x00000080)
222 #define IS_DAC_WAVE(WAVE) (((WAVE) == DAC_Wave_Noise) || \
223 ((WAVE) == DAC_Wave_Triangle))
232 #define IS_DAC_DATA(DATA) ((DATA) <= 0xFFF0)
240 #define DAC_IT_DMAUDR ((uint32_t)0x00002000)
241 #define IS_DAC_IT(IT) (((IT) == DAC_IT_DMAUDR))
251 #define DAC_FLAG_DMAUDR ((uint32_t)0x00002000)
252 #define IS_DAC_FLAG(FLAG) (((FLAG) == DAC_FLAG_DMAUDR))
271 void DAC_Cmd(uint32_t DAC_Channel, FunctionalState NewState);
281 void DAC_DMACmd(uint32_t DAC_Channel, FunctionalState NewState);
284 void DAC_ITConfig(uint32_t DAC_Channel, uint32_t DAC_IT, FunctionalState NewState);
void DAC_ClearFlag(uint32_t DAC_Channel, uint32_t DAC_FLAG)
Clears the DAC channel's pending flags.
void DAC_ClearITPendingBit(uint32_t DAC_Channel, uint32_t DAC_IT)
Clears the DAC channel's interrupt pending bits.
void DAC_SetChannel1Data(uint32_t DAC_Align, uint16_t Data)
Set the specified data holding register value for DAC channel1.
void DAC_Cmd(uint32_t DAC_Channel, FunctionalState NewState)
Enables or disables the specified DAC channel.
void DAC_SoftwareTriggerCmd(uint32_t DAC_Channel, FunctionalState NewState)
Enables or disables the selected DAC channel software trigger.
uint32_t DAC_OutputBuffer
void DAC_DMACmd(uint32_t DAC_Channel, FunctionalState NewState)
Enables or disables the specified DAC channel DMA request.
void DAC_WaveGenerationCmd(uint32_t DAC_Channel, uint32_t DAC_Wave, FunctionalState NewState)
Enables or disables the selected DAC channel wave generation.
ITStatus DAC_GetITStatus(uint32_t DAC_Channel, uint32_t DAC_IT)
Checks whether the specified DAC interrupt has occurred or not.
void DAC_SetChannel2Data(uint32_t DAC_Align, uint16_t Data)
Set the specified data holding register value for DAC channel2.
void DAC_DeInit(void)
Deinitializes the DAC peripheral registers to their default reset values.
void DAC_Init(uint32_t DAC_Channel, DAC_InitTypeDef *DAC_InitStruct)
Initializes the DAC peripheral according to the specified parameters in the DAC_InitStruct.
void DAC_StructInit(DAC_InitTypeDef *DAC_InitStruct)
Fills each DAC_InitStruct member with its default value.
DAC Init structure definition.
uint16_t DAC_GetDataOutputValue(uint32_t DAC_Channel)
Returns the last data output value of the selected DAC channel.
uint32_t DAC_WaveGeneration
void DAC_DualSoftwareTriggerCmd(FunctionalState NewState)
Enables or disables simultaneously the two DAC channels software triggers.
void DAC_ITConfig(uint32_t DAC_Channel, uint32_t DAC_IT, FunctionalState NewState)
Enables or disables the specified DAC interrupts.
void DAC_SetDualChannelData(uint32_t DAC_Align, uint16_t Data2, uint16_t Data1)
Set the specified data holding register value for dual channel DAC.
FlagStatus DAC_GetFlagStatus(uint32_t DAC_Channel, uint32_t DAC_FLAG)
Checks whether the specified DAC flag is set or not.
uint32_t DAC_LFSRUnmask_TriangleAmplitude