Forked.

Fork of mbed-dev by mbed official

Committer:
AnnaBridge
Date:
Wed Aug 16 18:27:13 2017 +0100
Revision:
171:89b338f31ef1
Parent:
160:d5399cc887bb
Child:
172:7d866c31b3c5
This updates the lib to the mbed lib v 149

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 149:156823d33999 1 /* mbed Microcontroller Library
<> 149:156823d33999 2 * Copyright (c) 2016, STMicroelectronics
<> 149:156823d33999 3 * All rights reserved.
<> 149:156823d33999 4 *
<> 149:156823d33999 5 * Redistribution and use in source and binary forms, with or without
<> 149:156823d33999 6 * modification, are permitted provided that the following conditions are met:
<> 149:156823d33999 7 *
<> 149:156823d33999 8 * 1. Redistributions of source code must retain the above copyright notice,
<> 149:156823d33999 9 * this list of conditions and the following disclaimer.
<> 149:156823d33999 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
<> 149:156823d33999 11 * this list of conditions and the following disclaimer in the documentation
<> 149:156823d33999 12 * and/or other materials provided with the distribution.
<> 149:156823d33999 13 * 3. Neither the name of STMicroelectronics nor the names of its contributors
<> 149:156823d33999 14 * may be used to endorse or promote products derived from this software
<> 149:156823d33999 15 * without specific prior written permission.
<> 149:156823d33999 16 *
<> 149:156823d33999 17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
<> 149:156823d33999 18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
<> 149:156823d33999 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
<> 149:156823d33999 20 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
<> 149:156823d33999 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
<> 149:156823d33999 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
<> 149:156823d33999 23 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
<> 149:156823d33999 24 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
<> 149:156823d33999 25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
<> 149:156823d33999 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<> 149:156823d33999 27 */
<> 149:156823d33999 28 #include "mbed_assert.h"
<> 149:156823d33999 29 #include "analogin_api.h"
<> 149:156823d33999 30
<> 149:156823d33999 31 #if DEVICE_ANALOGIN
<> 149:156823d33999 32
<> 160:d5399cc887bb 33 #include "mbed_wait_api.h"
<> 149:156823d33999 34 #include "cmsis.h"
<> 149:156823d33999 35 #include "pinmap.h"
<> 149:156823d33999 36 #include "PeripheralPins.h"
<> 149:156823d33999 37
<> 149:156823d33999 38 int adc_inited = 0;
<> 149:156823d33999 39
<> 149:156823d33999 40 void analogin_init(analogin_t *obj, PinName pin)
<> 149:156823d33999 41 {
<> 149:156823d33999 42 RCC_PeriphCLKInitTypeDef PeriphClkInit;
<> 149:156823d33999 43
<> 149:156823d33999 44 // Get the peripheral name from the pin and assign it to the object
AnnaBridge 171:89b338f31ef1 45 obj->handle.Instance = (ADC_TypeDef *) pinmap_peripheral(pin, PinMap_ADC);
AnnaBridge 171:89b338f31ef1 46 MBED_ASSERT(obj->handle.Instance != (ADC_TypeDef *)NC);
AnnaBridge 171:89b338f31ef1 47
<> 149:156823d33999 48 // Get the functions (adc channel) from the pin and assign it to the object
<> 149:156823d33999 49 uint32_t function = pinmap_function(pin, PinMap_ADC);
<> 149:156823d33999 50 MBED_ASSERT(function != (uint32_t)NC);
<> 149:156823d33999 51 obj->channel = STM_PIN_CHANNEL(function);
<> 149:156823d33999 52
<> 150:02e0a0aed4ec 53 // Configure GPIO excepted for internal channels (Temperature, Vref, Vbat, ...)
<> 150:02e0a0aed4ec 54 // ADC Internal Channels "pins" are described in PinNames.h and must have a value >= 0xF0
<> 150:02e0a0aed4ec 55 if (pin < 0xF0) {
<> 149:156823d33999 56 pinmap_pinout(pin, PinMap_ADC);
<> 149:156823d33999 57 }
<> 149:156823d33999 58
<> 149:156823d33999 59 // Save pin number for the read function
<> 149:156823d33999 60 obj->pin = pin;
<> 149:156823d33999 61
<> 149:156823d33999 62 // The ADC initialization is done once
<> 149:156823d33999 63 if (adc_inited == 0) {
<> 149:156823d33999 64 adc_inited = 1;
<> 149:156823d33999 65
<> 149:156823d33999 66 // Enable ADC clock
<> 149:156823d33999 67 __HAL_RCC_ADC1_CLK_ENABLE();
<> 149:156823d33999 68
<> 149:156823d33999 69 // Configure ADC clock prescaler
<> 149:156823d33999 70 // Caution: On STM32F1, ADC clock frequency max is 14 MHz (refer to device datasheet).
<> 149:156823d33999 71 // Therefore, ADC clock prescaler must be configured in function
<> 149:156823d33999 72 // of ADC clock source frequency to remain below this maximum frequency.
<> 149:156823d33999 73 // with 8 MHz external xtal: PCLK2 = 72 MHz --> ADC clock = 72/6 = 12 MHz
<> 149:156823d33999 74 // with internal clock : PCLK2 = 64 MHz --> ADC clock = 64/6 = 10.67 MHz
<> 149:156823d33999 75 PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_ADC;
<> 149:156823d33999 76 PeriphClkInit.AdcClockSelection = RCC_ADCPCLK2_DIV6;
<> 149:156823d33999 77 HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit);
<> 149:156823d33999 78
<> 149:156823d33999 79 // Configure ADC
AnnaBridge 171:89b338f31ef1 80 obj->handle.State = HAL_ADC_STATE_RESET;
AnnaBridge 171:89b338f31ef1 81 obj->handle.Init.DataAlign = ADC_DATAALIGN_RIGHT;
AnnaBridge 171:89b338f31ef1 82 obj->handle.Init.ScanConvMode = DISABLE;
AnnaBridge 171:89b338f31ef1 83 obj->handle.Init.ContinuousConvMode = DISABLE;
AnnaBridge 171:89b338f31ef1 84 obj->handle.Init.NbrOfConversion = 1;
AnnaBridge 171:89b338f31ef1 85 obj->handle.Init.DiscontinuousConvMode = DISABLE;
AnnaBridge 171:89b338f31ef1 86 obj->handle.Init.NbrOfDiscConversion = 0;
AnnaBridge 171:89b338f31ef1 87 obj->handle.Init.ExternalTrigConv = ADC_SOFTWARE_START;
AnnaBridge 171:89b338f31ef1 88 HAL_ADC_Init(&obj->handle);
<> 149:156823d33999 89 }
<> 149:156823d33999 90 }
<> 149:156823d33999 91
<> 149:156823d33999 92 static inline uint16_t adc_read(analogin_t *obj)
<> 149:156823d33999 93 {
<> 149:156823d33999 94 ADC_ChannelConfTypeDef sConfig;
<> 149:156823d33999 95
<> 149:156823d33999 96 // Configure ADC channel
<> 149:156823d33999 97 sConfig.Rank = 1;
<> 149:156823d33999 98 sConfig.SamplingTime = ADC_SAMPLETIME_7CYCLES_5;
<> 149:156823d33999 99
<> 149:156823d33999 100 switch (obj->channel) {
<> 149:156823d33999 101 case 0:
<> 149:156823d33999 102 sConfig.Channel = ADC_CHANNEL_0;
<> 149:156823d33999 103 break;
<> 149:156823d33999 104 case 1:
<> 149:156823d33999 105 sConfig.Channel = ADC_CHANNEL_1;
<> 149:156823d33999 106 break;
<> 149:156823d33999 107 case 2:
<> 149:156823d33999 108 sConfig.Channel = ADC_CHANNEL_2;
<> 149:156823d33999 109 break;
<> 149:156823d33999 110 case 3:
<> 149:156823d33999 111 sConfig.Channel = ADC_CHANNEL_3;
<> 149:156823d33999 112 break;
<> 149:156823d33999 113 case 4:
<> 149:156823d33999 114 sConfig.Channel = ADC_CHANNEL_4;
<> 149:156823d33999 115 break;
<> 149:156823d33999 116 case 5:
<> 149:156823d33999 117 sConfig.Channel = ADC_CHANNEL_5;
<> 149:156823d33999 118 break;
<> 149:156823d33999 119 case 6:
<> 149:156823d33999 120 sConfig.Channel = ADC_CHANNEL_6;
<> 149:156823d33999 121 break;
<> 149:156823d33999 122 case 7:
<> 149:156823d33999 123 sConfig.Channel = ADC_CHANNEL_7;
<> 149:156823d33999 124 break;
<> 149:156823d33999 125 case 8:
<> 149:156823d33999 126 sConfig.Channel = ADC_CHANNEL_8;
<> 149:156823d33999 127 break;
<> 149:156823d33999 128 case 9:
<> 149:156823d33999 129 sConfig.Channel = ADC_CHANNEL_9;
<> 149:156823d33999 130 break;
<> 149:156823d33999 131 case 10:
<> 149:156823d33999 132 sConfig.Channel = ADC_CHANNEL_10;
<> 149:156823d33999 133 break;
<> 149:156823d33999 134 case 11:
<> 149:156823d33999 135 sConfig.Channel = ADC_CHANNEL_11;
<> 149:156823d33999 136 break;
<> 149:156823d33999 137 case 12:
<> 149:156823d33999 138 sConfig.Channel = ADC_CHANNEL_12;
<> 149:156823d33999 139 break;
<> 149:156823d33999 140 case 13:
<> 149:156823d33999 141 sConfig.Channel = ADC_CHANNEL_13;
<> 149:156823d33999 142 break;
<> 149:156823d33999 143 case 14:
<> 149:156823d33999 144 sConfig.Channel = ADC_CHANNEL_14;
<> 149:156823d33999 145 break;
<> 149:156823d33999 146 case 15:
<> 149:156823d33999 147 sConfig.Channel = ADC_CHANNEL_15;
<> 149:156823d33999 148 break;
<> 149:156823d33999 149 case 16:
<> 149:156823d33999 150 sConfig.Channel = ADC_CHANNEL_TEMPSENSOR;
<> 149:156823d33999 151 break;
<> 149:156823d33999 152 case 17:
<> 149:156823d33999 153 sConfig.Channel = ADC_CHANNEL_VREFINT;
<> 149:156823d33999 154 break;
<> 149:156823d33999 155 default:
<> 149:156823d33999 156 return 0;
<> 149:156823d33999 157 }
<> 149:156823d33999 158
AnnaBridge 171:89b338f31ef1 159 HAL_ADC_ConfigChannel(&obj->handle, &sConfig);
<> 149:156823d33999 160
AnnaBridge 171:89b338f31ef1 161 HAL_ADC_Start(&obj->handle); // Start conversion
<> 149:156823d33999 162
<> 149:156823d33999 163 // Wait end of conversion and get value
AnnaBridge 171:89b338f31ef1 164 if (HAL_ADC_PollForConversion(&obj->handle, 10) == HAL_OK) {
AnnaBridge 171:89b338f31ef1 165 return (HAL_ADC_GetValue(&obj->handle));
<> 149:156823d33999 166 } else {
<> 149:156823d33999 167 return 0;
<> 149:156823d33999 168 }
<> 149:156823d33999 169 }
<> 149:156823d33999 170
<> 149:156823d33999 171 uint16_t analogin_read_u16(analogin_t *obj)
<> 149:156823d33999 172 {
<> 149:156823d33999 173 uint16_t value = adc_read(obj);
<> 149:156823d33999 174 // 12-bit to 16-bit conversion
<> 149:156823d33999 175 value = ((value << 4) & (uint16_t)0xFFF0) | ((value >> 8) & (uint16_t)0x000F);
<> 149:156823d33999 176 return value;
<> 149:156823d33999 177 }
<> 149:156823d33999 178
<> 149:156823d33999 179 float analogin_read(analogin_t *obj)
<> 149:156823d33999 180 {
<> 149:156823d33999 181 uint16_t value = adc_read(obj);
<> 149:156823d33999 182 return (float)value * (1.0f / (float)0xFFF); // 12 bits range
<> 149:156823d33999 183 }
<> 149:156823d33999 184
<> 149:156823d33999 185 #endif