]> git.gir.st - tmk_keyboard.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_STM/TARGET_STM32L0/analogout_api.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[tmk_keyboard.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_STM / TARGET_STM32L0 / analogout_api.c
1 /* mbed Microcontroller Library
2 * Copyright (c) 2014, STMicroelectronics
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. Neither the name of STMicroelectronics nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28 #include "mbed_assert.h"
29 #include "analogout_api.h"
30
31 #if DEVICE_ANALOGOUT
32
33 #include "cmsis.h"
34 #include "pinmap.h"
35 #include "mbed_error.h"
36 #include "PeripheralPins.h"
37
38 #define DAC_RANGE (0xFFF) // 12 bits
39
40 static DAC_HandleTypeDef DacHandle;
41
42 // These variables are used for the "free" function
43 static int pa4_used = 0;
44 static int pa5_used = 0;
45
46 void analogout_init(dac_t *obj, PinName pin)
47 {
48 DAC_ChannelConfTypeDef sConfig;
49
50 // Get the peripheral name from the pin and assign it to the object
51 obj->dac = (DACName)pinmap_peripheral(pin, PinMap_DAC);
52 MBED_ASSERT(obj->dac != (DACName)NC);
53
54 // Configure GPIO
55 pinmap_pinout(pin, PinMap_DAC);
56
57 // Save the pin for future use
58 obj->pin = pin;
59
60 // Enable DAC clock
61 __DAC_CLK_ENABLE();
62
63 // Configure DAC
64 DacHandle.Instance = DAC;
65
66 sConfig.DAC_Trigger = DAC_TRIGGER_NONE;
67 sConfig.DAC_OutputBuffer = DAC_OUTPUTBUFFER_DISABLE;
68
69 if (pin == PA_4) {
70 HAL_DAC_ConfigChannel(&DacHandle, &sConfig, DAC_CHANNEL_1);
71 pa4_used = 1;
72 }
73
74 #if defined(DAC_CHANNEL_2)
75 if (pin == PA_5) {
76 HAL_DAC_ConfigChannel(&DacHandle, &sConfig, DAC_CHANNEL_2);
77 pa5_used = 1;
78 }
79 #endif
80
81 analogout_write_u16(obj, 0);
82 }
83
84 void analogout_free(dac_t *obj)
85 {
86 // Reset DAC and disable clock
87 if (obj->pin == PA_4) pa4_used = 0;
88 if (obj->pin == PA_5) pa5_used = 0;
89
90 if ((pa4_used == 0) && (pa5_used == 0)) {
91 __DAC_FORCE_RESET();
92 __DAC_RELEASE_RESET();
93 __DAC_CLK_DISABLE();
94 }
95
96 // Configure GPIO
97 pin_function(obj->pin, STM_PIN_DATA(STM_MODE_INPUT, GPIO_NOPULL, 0));
98 }
99
100 static inline void dac_write(dac_t *obj, uint16_t value)
101 {
102 if (obj->pin == PA_4) {
103 HAL_DAC_SetValue(&DacHandle, DAC_CHANNEL_1, DAC_ALIGN_12B_R, value);
104 HAL_DAC_Start(&DacHandle, DAC_CHANNEL_1);
105 }
106
107 #if defined(DAC_CHANNEL_2)
108 if (obj->pin == PA_5) {
109 HAL_DAC_SetValue(&DacHandle, DAC_CHANNEL_2, DAC_ALIGN_12B_R, value);
110 HAL_DAC_Start(&DacHandle, DAC_CHANNEL_2);
111 }
112 #endif
113 }
114
115 static inline int dac_read(dac_t *obj)
116 {
117 if (obj->pin == PA_4) {
118 return (int)HAL_DAC_GetValue(&DacHandle, DAC_CHANNEL_1);
119 }
120 #if defined(DAC_CHANNEL_2)
121 else if (obj->pin == PA_5) {
122 return (int)HAL_DAC_GetValue(&DacHandle, DAC_CHANNEL_2);
123 }
124 #endif
125 else {
126 return 0;
127 }
128 }
129
130 void analogout_write(dac_t *obj, float value)
131 {
132 if (value < 0.0f) {
133 dac_write(obj, 0); // Min value
134 } else if (value > 1.0f) {
135 dac_write(obj, (uint16_t)DAC_RANGE); // Max value
136 } else {
137 dac_write(obj, (uint16_t)(value * (float)DAC_RANGE));
138 }
139 }
140
141 void analogout_write_u16(dac_t *obj, uint16_t value)
142 {
143 if (value > (uint16_t)DAC_RANGE) {
144 dac_write(obj, (uint16_t)DAC_RANGE); // Max value
145 } else {
146 dac_write(obj, value);
147 }
148 }
149
150 float analogout_read(dac_t *obj)
151 {
152 uint32_t value = dac_read(obj);
153 return (float)((float)value * (1.0f / (float)DAC_RANGE));
154 }
155
156 uint16_t analogout_read_u16(dac_t *obj)
157 {
158 return (uint16_t)dac_read(obj);
159 }
160
161 #endif // DEVICE_ANALOGOUT
Imprint / Impressum