adc.c 30.8 KB
Newer Older
1
/*
2
 * This file is part of the MicroPython project, http://micropython.org/
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2013, 2014 Damien P. George
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

D
Dave Hylands 已提交
27 28 29
#include <stdio.h>
#include <string.h>

30 31
#include "py/runtime.h"
#include "py/binary.h"
32
#include "py/mphal.h"
D
Dave Hylands 已提交
33 34
#include "adc.h"
#include "pin.h"
35
#include "timer.h"
D
Dave Hylands 已提交
36

37 38
#if MICROPY_HW_ENABLE_ADC

39 40 41 42 43 44 45 46 47 48 49 50 51
/// \moduleref pyb
/// \class ADC - analog to digital conversion: read analog values on a pin
///
/// Usage:
///
///     adc = pyb.ADC(pin)              # create an analog object from a pin
///     val = adc.read()                # read an analog value
///
///     adc = pyb.ADCAll(resolution)    # creale an ADCAll object
///     val = adc.read_channel(channel) # read the given channel
///     val = adc.read_core_temp()      # read MCU temperature
///     val = adc.read_core_vbat()      # read MCU VBAT
///     val = adc.read_core_vref()      # read MCU VREF
D
Dave Hylands 已提交
52 53

/* ADC defintions */
54

55 56
#if defined(STM32H7)
#define ADCx                    (ADC3)
57 58
#define PIN_ADC_MASK            PIN_ADC3
#define pin_adc_table           pin_adc3
59
#else
D
Dave Hylands 已提交
60
#define ADCx                    (ADC1)
61 62
#define PIN_ADC_MASK            PIN_ADC1
#define pin_adc_table           pin_adc1
63
#endif
64

65
#define ADCx_CLK_ENABLE         __HAL_RCC_ADC1_CLK_ENABLE
66

67 68 69 70
#if defined(STM32F0)

#define ADC_FIRST_GPIO_CHANNEL  (0)
#define ADC_LAST_GPIO_CHANNEL   (15)
71
#define ADC_SCALE_V             (3.3f)
72
#define ADC_CAL_ADDRESS         (0x1ffff7ba)
73 74
#define ADC_CAL1                ((uint16_t *)0x1ffff7b8)
#define ADC_CAL2                ((uint16_t *)0x1ffff7c2)
75
#define ADC_CAL_BITS            (12)
76 77

#elif defined(STM32F4)
78 79 80

#define ADC_FIRST_GPIO_CHANNEL  (0)
#define ADC_LAST_GPIO_CHANNEL   (15)
81
#define ADC_SCALE_V             (3.3f)
82
#define ADC_CAL_ADDRESS         (0x1fff7a2a)
83 84
#define ADC_CAL1                ((uint16_t *)(ADC_CAL_ADDRESS + 2))
#define ADC_CAL2                ((uint16_t *)(ADC_CAL_ADDRESS + 4))
85
#define ADC_CAL_BITS            (12)
86

87
#elif defined(STM32F7)
88

89 90
#define ADC_FIRST_GPIO_CHANNEL  (0)
#define ADC_LAST_GPIO_CHANNEL   (15)
91
#define ADC_SCALE_V             (3.3f)
92 93 94 95
#if defined(STM32F722xx) || defined(STM32F723xx) || \
    defined(STM32F732xx) || defined(STM32F733xx)
#define ADC_CAL_ADDRESS         (0x1ff07a2a)
#else
96
#define ADC_CAL_ADDRESS         (0x1ff0f44a)
97 98
#endif

99 100
#define ADC_CAL1                ((uint16_t *)(ADC_CAL_ADDRESS + 2))
#define ADC_CAL2                ((uint16_t *)(ADC_CAL_ADDRESS + 4))
101
#define ADC_CAL_BITS            (12)
102

103 104 105 106
#elif defined(STM32H7)

#define ADC_FIRST_GPIO_CHANNEL  (0)
#define ADC_LAST_GPIO_CHANNEL   (16)
107
#define ADC_SCALE_V             (3.3f)
108
#define ADC_CAL_ADDRESS         (0x1FF1E860)
109 110
#define ADC_CAL1                ((uint16_t *)(0x1FF1E820))
#define ADC_CAL2                ((uint16_t *)(0x1FF1E840))
111
#define ADC_CAL_BITS            (16)
112

113
#elif defined(STM32L4)
114

115 116
#define ADC_FIRST_GPIO_CHANNEL  (1)
#define ADC_LAST_GPIO_CHANNEL   (16)
117
#define ADC_SCALE_V             (3.0f)
118
#define ADC_CAL_ADDRESS         (0x1fff75aa)
119 120
#define ADC_CAL1                ((uint16_t *)(ADC_CAL_ADDRESS - 2))
#define ADC_CAL2                ((uint16_t *)(ADC_CAL_ADDRESS + 0x20))
121
#define ADC_CAL_BITS            (12)
122

123
#else
124

125
#error Unsupported processor
126

127
#endif
D
Dave Hylands 已提交
128

129 130 131
#if defined(STM32F091xC)
#define VBAT_DIV (2)
#elif defined(STM32F405xx) || defined(STM32F415xx) || \
132 133
    defined(STM32F407xx) || defined(STM32F417xx) || \
    defined(STM32F401xC) || defined(STM32F401xE)
D
Dave Hylands 已提交
134
#define VBAT_DIV (2)
135
#elif defined(STM32F411xE) || defined(STM32F413xx) || \
136 137 138
    defined(STM32F427xx) || defined(STM32F429xx) || \
    defined(STM32F437xx) || defined(STM32F439xx) || \
    defined(STM32F446xx)
139 140
#define VBAT_DIV (4)
#elif defined(STM32F722xx) || defined(STM32F723xx) || \
141 142 143
    defined(STM32F732xx) || defined(STM32F733xx) || \
    defined(STM32F746xx) || defined(STM32F765xx) || \
    defined(STM32F767xx) || defined(STM32F769xx)
D
Dave Hylands 已提交
144
#define VBAT_DIV (4)
145 146
#elif defined(STM32H743xx)
#define VBAT_DIV (4)
147
#elif defined(STM32L432xx) || \
148 149 150
    defined(STM32L451xx) || defined(STM32L452xx) || \
    defined(STM32L462xx) || defined(STM32L475xx) || \
    defined(STM32L476xx) || defined(STM32L496xx)
151
#define VBAT_DIV (3)
152 153
#else
#error Unsupported processor
D
Dave Hylands 已提交
154 155
#endif

156 157 158
// Timeout for waiting for end-of-conversion, in ms
#define EOC_TIMEOUT (10)

D
Dave Hylands 已提交
159 160 161 162
/* Core temperature sensor definitions */
#define CORE_TEMP_V25          (943)  /* (0.76v/3.3v)*(2^ADC resoultion) */
#define CORE_TEMP_AVG_SLOPE    (3)    /* (2.5mv/3.3v)*(2^ADC resoultion) */

163
// scale and calibration values for VBAT and VREF
164
#define ADC_SCALE (ADC_SCALE_V / ((1 << ADC_CAL_BITS) - 1))
165 166
#define VREFIN_CAL ((uint16_t *)ADC_CAL_ADDRESS)

167 168 169
#ifndef __HAL_ADC_IS_CHANNEL_INTERNAL
#define __HAL_ADC_IS_CHANNEL_INTERNAL(channel) \
    (channel == ADC_CHANNEL_VBAT \
170 171
    || channel == ADC_CHANNEL_VREFINT \
    || channel == ADC_CHANNEL_TEMPSENSOR)
172 173
#endif

D
Dave Hylands 已提交
174 175 176 177 178 179 180
typedef struct _pyb_obj_adc_t {
    mp_obj_base_t base;
    mp_obj_t pin_name;
    int channel;
    ADC_HandleTypeDef handle;
} pyb_obj_adc_t;

181 182
// convert user-facing channel number into internal channel number
static inline uint32_t adc_get_internal_channel(uint32_t channel) {
183
    #if defined(STM32F4) || defined(STM32F7)
184 185 186 187 188 189 190 191 192
    // on F4 and F7 MCUs we want channel 16 to always be the TEMPSENSOR
    // (on some MCUs ADC_CHANNEL_TEMPSENSOR=16, on others it doesn't)
    if (channel == 16) {
        channel = ADC_CHANNEL_TEMPSENSOR;
    }
    #endif
    return channel;
}

193
STATIC bool is_adcx_channel(int channel) {
194
    #if defined(STM32F411xE)
195 196
    // The HAL has an incorrect IS_ADC_CHANNEL macro for the F411 so we check for temp
    return IS_ADC_CHANNEL(channel) || channel == ADC_CHANNEL_TEMPSENSOR;
197
    #elif defined(STM32F0) || defined(STM32F4) || defined(STM32F7)
198
    return IS_ADC_CHANNEL(channel);
199
    #elif defined(STM32H7)
200
    return __HAL_ADC_IS_CHANNEL_INTERNAL(channel)
201 202
           || IS_ADC_CHANNEL(__HAL_ADC_DECIMAL_NB_TO_CHANNEL(channel));
    #elif defined(STM32L4)
203 204 205
    ADC_HandleTypeDef handle;
    handle.Instance = ADCx;
    return IS_ADC_CHANNEL(&handle, channel);
206
    #else
207
    #error Unsupported processor
208
    #endif
209 210 211 212
}

STATIC void adc_wait_for_eoc_or_timeout(int32_t timeout) {
    uint32_t tickstart = HAL_GetTick();
213
    #if defined(STM32F4) || defined(STM32F7)
214
    while ((ADCx->SR & ADC_FLAG_EOC) != ADC_FLAG_EOC) {
215
    #elif defined(STM32F0) || defined(STM32H7) || defined(STM32L4)
216
    while (READ_BIT(ADCx->ISR, ADC_FLAG_EOC) != ADC_FLAG_EOC) {
217
    #else
218
    #error Unsupported processor
219
        #endif
220
        if (((HAL_GetTick() - tickstart) > timeout)) {
221 222 223 224 225 226
            break; // timeout
        }
    }
}

STATIC void adcx_clock_enable(void) {
227
    #if defined(STM32F0) || defined(STM32F4) || defined(STM32F7)
228
    ADCx_CLK_ENABLE();
229
    #elif defined(STM32H7)
230 231
    __HAL_RCC_ADC3_CLK_ENABLE();
    __HAL_RCC_ADC_CONFIG(RCC_ADCCLKSOURCE_CLKP);
232
    #elif defined(STM32L4)
233
    __HAL_RCC_ADC_CLK_ENABLE();
234
    #else
235
    #error Unsupported processor
236
    #endif
237 238
}

239 240 241
STATIC void adcx_init_periph(ADC_HandleTypeDef *adch, uint32_t resolution) {
    adcx_clock_enable();

242 243 244
    adch->Instance = ADCx;
    adch->Init.Resolution = resolution;
    adch->Init.ContinuousConvMode = DISABLE;
245
    adch->Init.DiscontinuousConvMode = DISABLE;
246
    #if !defined(STM32F0)
247 248
    adch->Init.NbrOfDiscConversion = 0;
    adch->Init.NbrOfConversion = 1;
249
    #endif
250 251 252
    adch->Init.EOCSelection = ADC_EOC_SINGLE_CONV;
    adch->Init.ExternalTrigConv = ADC_SOFTWARE_START;
    adch->Init.ExternalTrigConvEdge = ADC_EXTERNALTRIGCONVEDGE_NONE;
253
    #if defined(STM32F0)
254 255 256
    adch->Init.ClockPrescaler = ADC_CLOCK_SYNC_PCLK_DIV4;        // 12MHz
    adch->Init.ScanConvMode = DISABLE;
    adch->Init.DataAlign = ADC_DATAALIGN_RIGHT;
257
    adch->Init.DMAContinuousRequests = DISABLE;
258
    adch->Init.SamplingTimeCommon = ADC_SAMPLETIME_55CYCLES_5;    // ~4uS
259
    #elif defined(STM32F4) || defined(STM32F7)
260 261 262
    adch->Init.ClockPrescaler = ADC_CLOCK_SYNC_PCLK_DIV2;
    adch->Init.ScanConvMode = DISABLE;
    adch->Init.DataAlign = ADC_DATAALIGN_RIGHT;
263 264
    adch->Init.DMAContinuousRequests = DISABLE;
    #elif defined(STM32H7)
265 266 267 268 269 270
    adch->Init.ClockPrescaler = ADC_CLOCK_SYNC_PCLK_DIV4;
    adch->Init.ScanConvMode = DISABLE;
    adch->Init.LowPowerAutoWait = DISABLE;
    adch->Init.Overrun = ADC_OVR_DATA_OVERWRITTEN;
    adch->Init.OversamplingMode = DISABLE;
    adch->Init.LeftBitShift = ADC_LEFTBITSHIFT_NONE;
271
    adch->Init.ConversionDataManagement = ADC_CONVERSIONDATA_DR;
272
    #elif defined(STM32L4)
273 274 275 276 277 278
    adch->Init.ClockPrescaler = ADC_CLOCK_ASYNC_DIV1;
    adch->Init.ScanConvMode = ADC_SCAN_DISABLE;
    adch->Init.LowPowerAutoWait = DISABLE;
    adch->Init.Overrun = ADC_OVR_DATA_PRESERVED;
    adch->Init.OversamplingMode = DISABLE;
    adch->Init.DataAlign = ADC_DATAALIGN_RIGHT;
279
    adch->Init.DMAContinuousRequests = DISABLE;
280 281 282 283 284
    #else
    #error Unsupported processor
    #endif

    HAL_ADC_Init(adch);
285 286 287 288

    #if defined(STM32H7)
    HAL_ADCEx_Calibration_Start(adch, ADC_CALIB_OFFSET, ADC_SINGLE_ENDED);
    #endif
289 290 291
    #if defined(STM32L4)
    HAL_ADCEx_Calibration_Start(adch, ADC_SINGLE_ENDED);
    #endif
292 293
}

294
STATIC void adc_init_single(pyb_obj_adc_t *adc_obj) {
D
Dave Hylands 已提交
295

296
    if (ADC_FIRST_GPIO_CHANNEL <= adc_obj->channel && adc_obj->channel <= ADC_LAST_GPIO_CHANNEL) {
297
        // Channels 0-16 correspond to real pins. Configure the GPIO pin in ADC mode.
298
        const pin_obj_t *pin = pin_adc_table[adc_obj->channel];
299
        mp_hal_pin_config(pin, MP_HAL_PIN_MODE_ADC, MP_HAL_PIN_PULL_NONE, 0);
D
Dave Hylands 已提交
300 301
    }

302
    adcx_init_periph(&adc_obj->handle, ADC_RESOLUTION_12B);
303

304
    #if defined(STM32L4) && defined(ADC_DUALMODE_REGSIMULT_INJECSIMULT)
305 306
    ADC_MultiModeTypeDef multimode;
    multimode.Mode = ADC_MODE_INDEPENDENT;
307
    if (HAL_ADCEx_MultiModeConfigChannel(&adc_obj->handle, &multimode) != HAL_OK) {
308
        mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("Can not set multimode on ADC1 channel: %d"), adc_obj->channel);
309
    }
310
    #endif
311
}
D
Dave Hylands 已提交
312

313
STATIC void adc_config_channel(ADC_HandleTypeDef *adc_handle, uint32_t channel) {
D
Dave Hylands 已提交
314 315
    ADC_ChannelConfTypeDef sConfig;

316
    #if defined(STM32H7)
317 318 319 320 321
    sConfig.Rank = ADC_REGULAR_RANK_1;
    if (__HAL_ADC_IS_CHANNEL_INTERNAL(channel) == 0) {
        channel = __HAL_ADC_DECIMAL_NB_TO_CHANNEL(channel);
    }
    #else
D
Dave Hylands 已提交
322
    sConfig.Rank = 1;
323 324 325
    #endif
    sConfig.Channel = channel;

326
    #if defined(STM32F0)
327
    sConfig.SamplingTime = ADC_SAMPLETIME_55CYCLES_5;
328
    #elif defined(STM32F4) || defined(STM32F7)
D
Dave Hylands 已提交
329
    sConfig.SamplingTime = ADC_SAMPLETIME_15CYCLES;
330
    #elif defined(STM32H7)
331
    if (__HAL_ADC_IS_CHANNEL_INTERNAL(channel)) {
332
        sConfig.SamplingTime = ADC_SAMPLETIME_810CYCLES_5;
333 334 335
    } else {
        sConfig.SamplingTime = ADC_SAMPLETIME_8CYCLES_5;
    }
336 337 338 339
    sConfig.SingleDiff = ADC_SINGLE_ENDED;
    sConfig.OffsetNumber = ADC_OFFSET_NONE;
    sConfig.OffsetRightShift = DISABLE;
    sConfig.OffsetSignedSaturation = DISABLE;
340
    #elif defined(STM32L4)
341
    if (__HAL_ADC_IS_CHANNEL_INTERNAL(channel)) {
342 343 344 345
        sConfig.SamplingTime = ADC_SAMPLETIME_247CYCLES_5;
    } else {
        sConfig.SamplingTime = ADC_SAMPLETIME_12CYCLES_5;
    }
346 347
    sConfig.SingleDiff = ADC_SINGLE_ENDED;
    sConfig.OffsetNumber = ADC_OFFSET_NONE;
348
    sConfig.Offset = 0;
349
    #else
350
    #error Unsupported processor
351
    #endif
D
Dave Hylands 已提交
352

353 354 355 356 357 358
    #if defined(STM32F0)
    // On the STM32F0 we must select only one channel at a time to sample, so clear all
    // channels before calling HAL_ADC_ConfigChannel, which will select the desired one.
    adc_handle->Instance->CHSELR = 0;
    #endif

359
    HAL_ADC_ConfigChannel(adc_handle, &sConfig);
D
Dave Hylands 已提交
360 361
}

362
STATIC uint32_t adc_read_channel(ADC_HandleTypeDef *adcHandle) {
D
Dave Hylands 已提交
363
    HAL_ADC_Start(adcHandle);
364 365
    adc_wait_for_eoc_or_timeout(EOC_TIMEOUT);
    uint32_t value = ADCx->DR;
D
Dave Hylands 已提交
366
    HAL_ADC_Stop(adcHandle);
367 368
    return value;
}
D
Dave Hylands 已提交
369

370 371
STATIC uint32_t adc_config_and_read_channel(ADC_HandleTypeDef *adcHandle, uint32_t channel) {
    adc_config_channel(adcHandle, channel);
372 373 374 375 376 377 378 379 380 381 382 383 384 385
    uint32_t raw_value = adc_read_channel(adcHandle);

    #if defined(STM32F4) || defined(STM32F7)
    // ST docs say that (at least on STM32F42x and STM32F43x), VBATE must
    // be disabled when TSVREFE is enabled for TEMPSENSOR and VREFINT
    // conversions to work.  VBATE is enabled by the above call to read
    // the channel, and here we disable VBATE so a subsequent call for
    // TEMPSENSOR or VREFINT works correctly.
    if (channel == ADC_CHANNEL_VBAT) {
        ADC->CCR &= ~ADC_CCR_VBATE;
    }
    #endif

    return raw_value;
D
Dave Hylands 已提交
386 387 388
}

/******************************************************************************/
389
/* MicroPython bindings : adc object (single channel)                         */
D
Dave Hylands 已提交
390

391
STATIC void adc_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
392
    pyb_obj_adc_t *self = MP_OBJ_TO_PTR(self_in);
393 394
    mp_print_str(print, "<ADC on ");
    mp_obj_print_helper(print, self->pin_name, PRINT_STR);
395
    mp_printf(print, " channel=%u>", self->channel);
D
Dave Hylands 已提交
396 397
}

398 399 400
/// \classmethod \constructor(pin)
/// Create an ADC object associated with the given pin.
/// This allows you to then read analog values on that pin.
401
STATIC mp_obj_t adc_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
402
    // check number of arguments
D
Damien George 已提交
403
    mp_arg_check_num(n_args, n_kw, 1, 1, false);
D
Dave Hylands 已提交
404

405 406
    // 1st argument is the pin name
    mp_obj_t pin_obj = args[0];
D
Dave Hylands 已提交
407 408 409

    uint32_t channel;

410
    if (mp_obj_is_int(pin_obj)) {
411
        channel = adc_get_internal_channel(mp_obj_get_int(pin_obj));
D
Dave Hylands 已提交
412
    } else {
413
        const pin_obj_t *pin = pin_find(pin_obj);
414
        if ((pin->adc_num & PIN_ADC_MASK) == 0) {
D
Dave Hylands 已提交
415
            // No ADC1 function on that pin
416
            mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("pin %q does not have ADC capabilities"), pin->name);
D
Dave Hylands 已提交
417 418 419 420
        }
        channel = pin->adc_channel;
    }

421
    if (!is_adcx_channel(channel)) {
422
        mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("not a valid ADC Channel: %d"), channel);
D
Dave Hylands 已提交
423
    }
424 425 426 427


    if (ADC_FIRST_GPIO_CHANNEL <= channel && channel <= ADC_LAST_GPIO_CHANNEL) {
        // these channels correspond to physical GPIO ports so make sure they exist
428
        if (pin_adc_table[channel] == NULL) {
429
            mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("channel %d not available on this board"), channel);
430
        }
D
Dave Hylands 已提交
431 432 433 434
    }

    pyb_obj_adc_t *o = m_new_obj(pyb_obj_adc_t);
    memset(o, 0, sizeof(*o));
435
    o->base.type = &pyb_adc_type;
D
Dave Hylands 已提交
436 437 438 439
    o->pin_name = pin_obj;
    o->channel = channel;
    adc_init_single(o);

440
    return MP_OBJ_FROM_PTR(o);
D
Dave Hylands 已提交
441 442
}

443 444 445
/// \method read()
/// Read the value on the analog pin and return it.  The returned value
/// will be between 0 and 4095.
446
STATIC mp_obj_t adc_read(mp_obj_t self_in) {
447
    pyb_obj_adc_t *self = MP_OBJ_TO_PTR(self_in);
448
    return mp_obj_new_int(adc_config_and_read_channel(&self->handle, self->channel));
449 450 451
}
STATIC MP_DEFINE_CONST_FUN_OBJ_1(adc_read_obj, adc_read);

452
/// \method read_timed(buf, timer)
453
///
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
/// Read analog values into `buf` at a rate set by the `timer` object.
///
/// `buf` can be bytearray or array.array for example.  The ADC values have
/// 12-bit resolution and are stored directly into `buf` if its element size is
/// 16 bits or greater.  If `buf` has only 8-bit elements (eg a bytearray) then
/// the sample resolution will be reduced to 8 bits.
///
/// `timer` should be a Timer object, and a sample is read each time the timer
/// triggers.  The timer must already be initialised and running at the desired
/// sampling frequency.
///
/// To support previous behaviour of this function, `timer` can also be an
/// integer which specifies the frequency (in Hz) to sample at.  In this case
/// Timer(6) will be automatically configured to run at the given frequency.
///
/// Example using a Timer object (preferred way):
///
///     adc = pyb.ADC(pyb.Pin.board.X19)    # create an ADC on pin X19
///     tim = pyb.Timer(6, freq=10)         # create a timer running at 10Hz
///     buf = bytearray(100)                # creat a buffer to store the samples
///     adc.read_timed(buf, tim)            # sample 100 values, taking 10s
///
/// Example using an integer for the frequency:
477 478 479 480 481 482 483 484 485
///
///     adc = pyb.ADC(pyb.Pin.board.X19)    # create an ADC on pin X19
///     buf = bytearray(100)                # create a buffer of 100 bytes
///     adc.read_timed(buf, 10)             # read analog values into buf at 10Hz
///                                         #   this will take 10 seconds to finish
///     for val in buf:                     # loop over all values
///         print(val)                      # print the value out
///
/// This function does not allocate any memory.
486
STATIC mp_obj_t adc_read_timed(mp_obj_t self_in, mp_obj_t buf_in, mp_obj_t freq_in) {
487
    pyb_obj_adc_t *self = MP_OBJ_TO_PTR(self_in);
488

489 490
    mp_buffer_info_t bufinfo;
    mp_get_buffer_raise(buf_in, &bufinfo, MP_BUFFER_WRITE);
491
    size_t typesize = mp_binary_get_size('@', bufinfo.typecode, NULL);
492

493 494 495 496 497 498 499 500 501 502 503 504
    TIM_HandleTypeDef *tim;
    #if defined(TIM6)
    if (mp_obj_is_integer(freq_in)) {
        // freq in Hz given so init TIM6 (legacy behaviour)
        tim = timer_tim6_init(mp_obj_get_int(freq_in));
        HAL_TIM_Base_Start(tim);
    } else
    #endif
    {
        // use the supplied timer object as the sampling time base
        tim = pyb_timer_get_handle(freq_in);
    }
505

506
    // configure the ADC channel
507
    adc_config_channel(&self->handle, self->channel);
508 509 510 511

    // This uses the timer in polling mode to do the sampling
    // TODO use DMA

512 513
    uint nelems = bufinfo.len / typesize;
    for (uint index = 0; index < nelems; index++) {
514
        // Wait for the timer to trigger so we sample at the correct frequency
515
        while (__HAL_TIM_GET_FLAG(tim, TIM_FLAG_UPDATE) == RESET) {
516
        }
517
        __HAL_TIM_CLEAR_FLAG(tim, TIM_FLAG_UPDATE);
518 519 520 521 522 523

        if (index == 0) {
            // for the first sample we need to turn the ADC on
            HAL_ADC_Start(&self->handle);
        } else {
            // for subsequent samples we can just set the "start sample" bit
524
            #if defined(STM32F4) || defined(STM32F7)
525
            ADCx->CR2 |= (uint32_t)ADC_CR2_SWSTART;
526
            #elif defined(STM32F0) || defined(STM32H7) || defined(STM32L4)
527
            SET_BIT(ADCx->CR, ADC_CR_ADSTART);
528
            #else
529
            #error Unsupported processor
530
            #endif
531 532 533
        }

        // wait for sample to complete
534
        adc_wait_for_eoc_or_timeout(EOC_TIMEOUT);
535 536 537 538 539

        // read value
        uint value = ADCx->DR;

        // store value in buffer
540 541 542 543
        if (typesize == 1) {
            value >>= 4;
        }
        mp_binary_set_val_array_from_int(bufinfo.typecode, bufinfo.buf, index, value);
544 545
    }

546 547 548
    // turn the ADC off
    HAL_ADC_Stop(&self->handle);

549 550 551 552 553 554
    #if defined(TIM6)
    if (mp_obj_is_integer(freq_in)) {
        // stop timer if we initialised TIM6 in this function (legacy behaviour)
        HAL_TIM_Base_Stop(tim);
    }
    #endif
555 556 557 558 559

    return mp_obj_new_int(bufinfo.len);
}
STATIC MP_DEFINE_CONST_FUN_OBJ_3(adc_read_timed_obj, adc_read_timed);

560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
// read_timed_multi((adcx, adcy, ...), (bufx, bufy, ...), timer)
//
// Read analog values from multiple ADC's into buffers at a rate set by the
// timer.  The ADC values have 12-bit resolution and are stored directly into
// the corresponding buffer if its element size is 16 bits or greater, otherwise
// the sample resolution will be reduced to 8 bits.
//
// This function should not allocate any heap memory.
STATIC mp_obj_t adc_read_timed_multi(mp_obj_t adc_array_in, mp_obj_t buf_array_in, mp_obj_t tim_in) {
    size_t nadcs, nbufs;
    mp_obj_t *adc_array, *buf_array;
    mp_obj_get_array(adc_array_in, &nadcs, &adc_array);
    mp_obj_get_array(buf_array_in, &nbufs, &buf_array);

    if (nadcs < 1) {
575
        mp_raise_ValueError(MP_ERROR_TEXT("need at least 1 ADC"));
576 577
    }
    if (nadcs != nbufs) {
578
        mp_raise_ValueError(MP_ERROR_TEXT("length of ADC and buffer lists differ"));
579 580 581 582 583 584
    }

    // Get buf for first ADC, get word size, check other buffers match in type
    mp_buffer_info_t bufinfo;
    mp_get_buffer_raise(buf_array[0], &bufinfo, MP_BUFFER_WRITE);
    size_t typesize = mp_binary_get_size('@', bufinfo.typecode, NULL);
585
    void *bufptrs[nbufs];
586 587 588 589
    for (uint array_index = 0; array_index < nbufs; array_index++) {
        mp_buffer_info_t bufinfo_curr;
        mp_get_buffer_raise(buf_array[array_index], &bufinfo_curr, MP_BUFFER_WRITE);
        if ((bufinfo.len != bufinfo_curr.len) || (bufinfo.typecode != bufinfo_curr.typecode)) {
590
            mp_raise_ValueError(MP_ERROR_TEXT("size and type of buffers must match"));
591
        }
592
        bufptrs[array_index] = bufinfo_curr.buf;
593 594 595 596 597 598 599
    }

    // Use the supplied timer object as the sampling time base
    TIM_HandleTypeDef *tim;
    tim = pyb_timer_get_handle(tim_in);

    // Start adc; this is slow so wait for it to start
600
    pyb_obj_adc_t *adc0 = MP_OBJ_TO_PTR(adc_array[0]);
601 602 603
    adc_config_channel(&adc0->handle, adc0->channel);
    HAL_ADC_Start(&adc0->handle);
    // Wait for sample to complete and discard
604
    adc_wait_for_eoc_or_timeout(EOC_TIMEOUT);
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
    // Read (and discard) value
    uint value = ADCx->DR;

    // Ensure first sample is on a timer tick
    __HAL_TIM_CLEAR_FLAG(tim, TIM_FLAG_UPDATE);
    while (__HAL_TIM_GET_FLAG(tim, TIM_FLAG_UPDATE) == RESET) {
    }
    __HAL_TIM_CLEAR_FLAG(tim, TIM_FLAG_UPDATE);

    // Overrun check: assume success
    bool success = true;
    size_t nelems = bufinfo.len / typesize;
    for (size_t elem_index = 0; elem_index < nelems; elem_index++) {
        if (__HAL_TIM_GET_FLAG(tim, TIM_FLAG_UPDATE) != RESET) {
            // Timer has already triggered
            success = false;
        } else {
            // Wait for the timer to trigger so we sample at the correct frequency
            while (__HAL_TIM_GET_FLAG(tim, TIM_FLAG_UPDATE) == RESET) {
            }
        }
        __HAL_TIM_CLEAR_FLAG(tim, TIM_FLAG_UPDATE);

        for (size_t array_index = 0; array_index < nadcs; array_index++) {
629
            pyb_obj_adc_t *adc = MP_OBJ_TO_PTR(adc_array[array_index]);
630 631 632 633 634 635
            // configure the ADC channel
            adc_config_channel(&adc->handle, adc->channel);
            // for the first sample we need to turn the ADC on
            // ADC is started: set the "start sample" bit
            #if defined(STM32F4) || defined(STM32F7)
            ADCx->CR2 |= (uint32_t)ADC_CR2_SWSTART;
636
            #elif defined(STM32F0) || defined(STM32H7) || defined(STM32L4)
637 638 639 640 641
            SET_BIT(ADCx->CR, ADC_CR_ADSTART);
            #else
            #error Unsupported processor
            #endif
            // wait for sample to complete
642
            adc_wait_for_eoc_or_timeout(EOC_TIMEOUT);
643 644 645 646 647 648 649 650

            // read value
            value = ADCx->DR;

            // store values in buffer
            if (typesize == 1) {
                value >>= 4;
            }
651
            mp_binary_set_val_array_from_int(bufinfo.typecode, bufptrs[array_index], elem_index, value);
652 653 654 655
        }
    }

    // Turn the ADC off
656
    adc0 = MP_OBJ_TO_PTR(adc_array[0]);
657 658 659 660 661 662 663
    HAL_ADC_Stop(&adc0->handle);

    return mp_obj_new_bool(success);
}
STATIC MP_DEFINE_CONST_FUN_OBJ_3(adc_read_timed_multi_fun_obj, adc_read_timed_multi);
STATIC MP_DEFINE_CONST_STATICMETHOD_OBJ(adc_read_timed_multi_obj, MP_ROM_PTR(&adc_read_timed_multi_fun_obj));

664 665 666
STATIC const mp_rom_map_elem_t adc_locals_dict_table[] = {
    { MP_ROM_QSTR(MP_QSTR_read), MP_ROM_PTR(&adc_read_obj) },
    { MP_ROM_QSTR(MP_QSTR_read_timed), MP_ROM_PTR(&adc_read_timed_obj) },
667
    { MP_ROM_QSTR(MP_QSTR_read_timed_multi), MP_ROM_PTR(&adc_read_timed_multi_obj) },
668 669
};

670 671
STATIC MP_DEFINE_CONST_DICT(adc_locals_dict, adc_locals_dict_table);

672 673 674 675 676
const mp_obj_type_t pyb_adc_type = {
    { &mp_type_type },
    .name = MP_QSTR_ADC,
    .print = adc_print,
    .make_new = adc_make_new,
677
    .locals_dict = (mp_obj_dict_t *)&adc_locals_dict,
678
};
D
Dave Hylands 已提交
679 680 681 682

/******************************************************************************/
/* adc all object                                                             */

683
typedef struct _pyb_adc_all_obj_t {
D
Dave Hylands 已提交
684 685
    mp_obj_base_t base;
    ADC_HandleTypeDef handle;
686
} pyb_adc_all_obj_t;
D
Dave Hylands 已提交
687

688
void adc_init_all(pyb_adc_all_obj_t *adc_all, uint32_t resolution, uint32_t en_mask) {
D
Dave Hylands 已提交
689 690

    switch (resolution) {
691
        #if !defined(STM32H7)
692 693 694
        case 6:
            resolution = ADC_RESOLUTION_6B;
            break;
695
        #endif
696 697 698 699 700 701 702 703 704
        case 8:
            resolution = ADC_RESOLUTION_8B;
            break;
        case 10:
            resolution = ADC_RESOLUTION_10B;
            break;
        case 12:
            resolution = ADC_RESOLUTION_12B;
            break;
705
        #if defined(STM32H7)
706 707 708
        case 16:
            resolution = ADC_RESOLUTION_16B;
            break;
709
        #endif
D
Dave Hylands 已提交
710
        default:
711
            mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("resolution %d not supported"), resolution);
D
Dave Hylands 已提交
712 713
    }

714
    for (uint32_t channel = ADC_FIRST_GPIO_CHANNEL; channel <= ADC_LAST_GPIO_CHANNEL; ++channel) {
715 716 717 718
        // only initialise those channels that are selected with the en_mask
        if (en_mask & (1 << channel)) {
            // Channels 0-16 correspond to real pins. Configure the GPIO pin in
            // ADC mode.
719
            const pin_obj_t *pin = pin_adc_table[channel];
720
            if (pin) {
721
                mp_hal_pin_config(pin, MP_HAL_PIN_MODE_ADC, MP_HAL_PIN_PULL_NONE, 0);
722 723
            }
        }
D
Dave Hylands 已提交
724 725
    }

726
    adcx_init_periph(&adc_all->handle, resolution);
D
Dave Hylands 已提交
727 728
}

D
Dave Hylands 已提交
729
int adc_get_resolution(ADC_HandleTypeDef *adcHandle) {
730
    uint32_t res_reg = ADC_GET_RESOLUTION(adcHandle);
D
Dave Hylands 已提交
731 732

    switch (res_reg) {
733
        #if !defined(STM32H7)
734 735
        case ADC_RESOLUTION_6B:
            return 6;
736
        #endif
737 738 739 740
        case ADC_RESOLUTION_8B:
            return 8;
        case ADC_RESOLUTION_10B:
            return 10;
741
        #if defined(STM32H7)
742 743
        case ADC_RESOLUTION_16B:
            return 16;
744
        #endif
D
Dave Hylands 已提交
745 746 747 748
    }
    return 12;
}

749 750 751 752 753
STATIC uint32_t adc_config_and_read_ref(ADC_HandleTypeDef *adcHandle, uint32_t channel) {
    uint32_t raw_value = adc_config_and_read_channel(adcHandle, channel);
    // Scale raw reading to the number of bits used by the calibration constants
    return raw_value << (ADC_CAL_BITS - adc_get_resolution(adcHandle));
}
D
Dave Hylands 已提交
754

755 756
int adc_read_core_temp(ADC_HandleTypeDef *adcHandle) {
    int32_t raw_value = adc_config_and_read_ref(adcHandle, ADC_CHANNEL_TEMPSENSOR);
D
Dave Hylands 已提交
757 758 759
    return ((raw_value - CORE_TEMP_V25) / CORE_TEMP_AVG_SLOPE) + 25;
}

D
Dave Hylands 已提交
760
#if MICROPY_PY_BUILTINS_FLOAT
761 762 763
// correction factor for reference value
STATIC volatile float adc_refcor = 1.0f;

764
float adc_read_core_temp_float(ADC_HandleTypeDef *adcHandle) {
765
    int32_t raw_value = adc_config_and_read_ref(adcHandle, ADC_CHANNEL_TEMPSENSOR);
766
    float core_temp_avg_slope = (*ADC_CAL2 - *ADC_CAL1) / 80.0f;
767 768 769
    return (((float)raw_value * adc_refcor - *ADC_CAL1) / core_temp_avg_slope) + 30.0f;
}

770
float adc_read_core_vbat(ADC_HandleTypeDef *adcHandle) {
771
    uint32_t raw_value = adc_config_and_read_ref(adcHandle, ADC_CHANNEL_VBAT);
772
    return raw_value * VBAT_DIV * ADC_SCALE * adc_refcor;
D
Dave Hylands 已提交
773 774
}

775
float adc_read_core_vref(ADC_HandleTypeDef *adcHandle) {
776
    uint32_t raw_value = adc_config_and_read_ref(adcHandle, ADC_CHANNEL_VREFINT);
D
Dave Hylands 已提交
777

778 779 780 781
    // update the reference correction factor
    adc_refcor = ((float)(*VREFIN_CAL)) / ((float)raw_value);

    return (*VREFIN_CAL) * ADC_SCALE;
D
Dave Hylands 已提交
782
}
D
Dave Hylands 已提交
783
#endif
D
Dave Hylands 已提交
784 785

/******************************************************************************/
786
/* MicroPython bindings : adc_all object                                      */
D
Dave Hylands 已提交
787

788
STATIC mp_obj_t adc_all_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
789
    // check number of arguments
790
    mp_arg_check_num(n_args, n_kw, 1, 2, false);
791 792 793 794

    // make ADCAll object
    pyb_adc_all_obj_t *o = m_new_obj(pyb_adc_all_obj_t);
    o->base.type = &pyb_adc_all_type;
795 796 797
    mp_int_t res = mp_obj_get_int(args[0]);
    uint32_t en_mask = 0xffffffff;
    if (n_args > 1) {
798
        en_mask = mp_obj_get_int(args[1]);
799 800
    }
    adc_init_all(o, res, en_mask);
801

802
    return MP_OBJ_FROM_PTR(o);
D
Dave Hylands 已提交
803 804
}

805
STATIC mp_obj_t adc_all_read_channel(mp_obj_t self_in, mp_obj_t channel) {
806
    pyb_adc_all_obj_t *self = MP_OBJ_TO_PTR(self_in);
807
    uint32_t chan = adc_get_internal_channel(mp_obj_get_int(channel));
D
Dave Hylands 已提交
808 809 810
    uint32_t data = adc_config_and_read_channel(&self->handle, chan);
    return mp_obj_new_int(data);
}
811
STATIC MP_DEFINE_CONST_FUN_OBJ_2(adc_all_read_channel_obj, adc_all_read_channel);
D
Dave Hylands 已提交
812

813
STATIC mp_obj_t adc_all_read_core_temp(mp_obj_t self_in) {
814
    pyb_adc_all_obj_t *self = MP_OBJ_TO_PTR(self_in);
815 816 817 818
    #if MICROPY_PY_BUILTINS_FLOAT
    float data = adc_read_core_temp_float(&self->handle);
    return mp_obj_new_float(data);
    #else
819
    int data = adc_read_core_temp(&self->handle);
D
Dave Hylands 已提交
820
    return mp_obj_new_int(data);
821
    #endif
D
Dave Hylands 已提交
822
}
823
STATIC MP_DEFINE_CONST_FUN_OBJ_1(adc_all_read_core_temp_obj, adc_all_read_core_temp);
D
Dave Hylands 已提交
824

D
Dave Hylands 已提交
825
#if MICROPY_PY_BUILTINS_FLOAT
826
STATIC mp_obj_t adc_all_read_core_vbat(mp_obj_t self_in) {
827
    pyb_adc_all_obj_t *self = MP_OBJ_TO_PTR(self_in);
D
Dave Hylands 已提交
828 829 830
    float data = adc_read_core_vbat(&self->handle);
    return mp_obj_new_float(data);
}
831
STATIC MP_DEFINE_CONST_FUN_OBJ_1(adc_all_read_core_vbat_obj, adc_all_read_core_vbat);
D
Dave Hylands 已提交
832

833
STATIC mp_obj_t adc_all_read_core_vref(mp_obj_t self_in) {
834
    pyb_adc_all_obj_t *self = MP_OBJ_TO_PTR(self_in);
835
    float data = adc_read_core_vref(&self->handle);
D
Dave Hylands 已提交
836 837
    return mp_obj_new_float(data);
}
838
STATIC MP_DEFINE_CONST_FUN_OBJ_1(adc_all_read_core_vref_obj, adc_all_read_core_vref);
839 840

STATIC mp_obj_t adc_all_read_vref(mp_obj_t self_in) {
841
    pyb_adc_all_obj_t *self = MP_OBJ_TO_PTR(self_in);
842
    adc_read_core_vref(&self->handle);
843
    return mp_obj_new_float(ADC_SCALE_V * adc_refcor);
844 845
}
STATIC MP_DEFINE_CONST_FUN_OBJ_1(adc_all_read_vref_obj, adc_all_read_vref);
D
Dave Hylands 已提交
846
#endif
D
Dave Hylands 已提交
847

848 849 850
STATIC const mp_rom_map_elem_t adc_all_locals_dict_table[] = {
    { MP_ROM_QSTR(MP_QSTR_read_channel), MP_ROM_PTR(&adc_all_read_channel_obj) },
    { MP_ROM_QSTR(MP_QSTR_read_core_temp), MP_ROM_PTR(&adc_all_read_core_temp_obj) },
851
    #if MICROPY_PY_BUILTINS_FLOAT
852 853 854
    { MP_ROM_QSTR(MP_QSTR_read_core_vbat), MP_ROM_PTR(&adc_all_read_core_vbat_obj) },
    { MP_ROM_QSTR(MP_QSTR_read_core_vref), MP_ROM_PTR(&adc_all_read_core_vref_obj) },
    { MP_ROM_QSTR(MP_QSTR_read_vref), MP_ROM_PTR(&adc_all_read_vref_obj) },
855
    #endif
D
Dave Hylands 已提交
856 857
};

858 859
STATIC MP_DEFINE_CONST_DICT(adc_all_locals_dict, adc_all_locals_dict_table);

860
const mp_obj_type_t pyb_adc_all_type = {
D
Dave Hylands 已提交
861
    { &mp_type_type },
862 863
    .name = MP_QSTR_ADCAll,
    .make_new = adc_all_make_new,
864
    .locals_dict = (mp_obj_dict_t *)&adc_all_locals_dict,
D
Dave Hylands 已提交
865
};
866 867

#endif // MICROPY_HW_ENABLE_ADC