atmel-samd: Fully reset the ADC state on reset to prevent a crash.
This commit is contained in:
parent
d29915ca3d
commit
f74e477966
@ -24,6 +24,8 @@
|
||||
* THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "common-hal/nativeio/AnalogIn.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "py/gc.h"
|
||||
@ -82,6 +84,14 @@ void common_hal_nativeio_analogin_deinit(nativeio_analogin_obj_t *self) {
|
||||
reset_pin(self->pin->pin);
|
||||
}
|
||||
|
||||
void analogin_reset() {
|
||||
if (adc_instance != NULL) {
|
||||
adc_reset(adc_instance);
|
||||
adc_instance = NULL;
|
||||
}
|
||||
active_channel_count = 0;
|
||||
}
|
||||
|
||||
uint16_t common_hal_nativeio_analogin_get_value(nativeio_analogin_obj_t *self) {
|
||||
adc_set_positive_input(adc_instance, self->pin->adc_input);
|
||||
|
||||
|
32
atmel-samd/common-hal/nativeio/AnalogIn.h
Normal file
32
atmel-samd/common-hal/nativeio/AnalogIn.h
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the MicroPython project, http://micropython.org/
|
||||
*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2016 Scott Shawcroft
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef __MICROPY_INCLUDED_ATMEL_SAMD_COMMON_HAL_NATIVEIO_ANALOGIN_H__
|
||||
#define __MICROPY_INCLUDED_ATMEL_SAMD_COMMON_HAL_NATIVEIO_ANALOGIN_H__
|
||||
|
||||
void analogin_reset(void);
|
||||
|
||||
#endif // __MICROPY_INCLUDED_ATMEL_SAMD_COMMON_HAL_NATIVEIO_ANALOGIN_H__
|
@ -22,6 +22,8 @@
|
||||
#include "asf/sam0/drivers/system/system.h"
|
||||
#include <board.h>
|
||||
|
||||
#include "common-hal/nativeio/AnalogIn.h"
|
||||
|
||||
#ifdef EXPRESS_BOARD
|
||||
#include "common-hal/nativeio/types.h"
|
||||
#include "QTouch/touch_api_ptc.h"
|
||||
@ -157,6 +159,8 @@ void reset_samd21(void) {
|
||||
selfcap_config.num_sensors = 0;
|
||||
#endif
|
||||
|
||||
analogin_reset();
|
||||
|
||||
struct system_pinmux_config config;
|
||||
system_pinmux_get_config_defaults(&config);
|
||||
config.powersave = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user