|
|
|
@ -33,11 +33,18 @@
|
|
|
|
|
#include "py/mphal.h"
|
|
|
|
|
#include "shared-bindings/touchio/TouchIn.h"
|
|
|
|
|
|
|
|
|
|
#ifdef SAMD21
|
|
|
|
|
#include "hpl/pm/hpl_pm_base.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "clocks.h"
|
|
|
|
|
#include "samd21_pins.h"
|
|
|
|
|
#include "tick.h"
|
|
|
|
|
|
|
|
|
|
#include "adafruit_ptc.h"
|
|
|
|
|
|
|
|
|
|
bool touch_enabled = false;
|
|
|
|
|
|
|
|
|
|
static uint16_t get_raw_reading(touchio_touchin_obj_t *self) {
|
|
|
|
|
adafruit_ptc_start_conversion(PTC, &self->config);
|
|
|
|
|
|
|
|
|
@ -58,13 +65,21 @@ void common_hal_touchio_touchin_construct(touchio_touchin_obj_t* self,
|
|
|
|
|
}
|
|
|
|
|
claim_pin(pin);
|
|
|
|
|
|
|
|
|
|
/* Setup and enable generic clock source for PTC module. */
|
|
|
|
|
struct system_gclk_chan_config gclk_chan_conf;
|
|
|
|
|
system_gclk_chan_get_config_defaults(&gclk_chan_conf);
|
|
|
|
|
gclk_chan_conf.source_generator = GCLK_GENERATOR_3;
|
|
|
|
|
system_gclk_chan_set_config(PTC_GCLK_ID, &gclk_chan_conf);
|
|
|
|
|
system_gclk_chan_enable(PTC_GCLK_ID);
|
|
|
|
|
system_apb_clock_set_mask(SYSTEM_CLOCK_APB_APBC, PM_APBCMASK_PTC);
|
|
|
|
|
// Turn on the PTC if its not in use. We won't turn it off until reset.
|
|
|
|
|
#ifdef SAMD21
|
|
|
|
|
if ((( Ptc *) PTC)->CTRLA.bit.ENABLE == 0) {
|
|
|
|
|
// We run the PTC at 8mhz so divide the 48mhz clock by 6.
|
|
|
|
|
uint8_t gclk = find_free_gclk(6);
|
|
|
|
|
if (gclk > GCLK_GEN_NUM) {
|
|
|
|
|
mp_raise_RuntimeError("No free GCLKs");
|
|
|
|
|
}
|
|
|
|
|
enable_clock_generator(gclk, CLOCK_48MHZ, 6);
|
|
|
|
|
|
|
|
|
|
/* Setup and enable generic clock source for PTC module. */
|
|
|
|
|
connect_gclk_to_peripheral(gclk, PTC_GCLK_ID);
|
|
|
|
|
|
|
|
|
|
_pm_enable_bus_clock(PM_BUS_APBC, PTC);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
adafruit_ptc_get_config_default(&self->config);
|
|
|
|
|
self->config.pin = pin->pin;
|
|
|
|
@ -80,6 +95,7 @@ void common_hal_touchio_touchin_construct(touchio_touchin_obj_t* self,
|
|
|
|
|
// but for touches using fruit or other objects, the difference is much less.
|
|
|
|
|
|
|
|
|
|
self->threshold = get_raw_reading(self) + 100;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool common_hal_touchio_touchin_deinited(touchio_touchin_obj_t* self) {
|
|
|
|
@ -91,12 +107,21 @@ void common_hal_touchio_touchin_deinit(touchio_touchin_obj_t* self) {
|
|
|
|
|
if (common_hal_touchio_touchin_deinited(self)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// We leave the clocks running because they may be in use by others.
|
|
|
|
|
|
|
|
|
|
reset_pin(self->config.pin);
|
|
|
|
|
self->config.pin = NO_PIN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void touchin_reset() {
|
|
|
|
|
// TODO(tannewt): Reset the PTC.
|
|
|
|
|
Ptc* ptc = ((Ptc *) PTC);
|
|
|
|
|
if (ptc->CTRLA.bit.ENABLE == 1) {
|
|
|
|
|
ptc->CTRLA.bit.ENABLE = 0;
|
|
|
|
|
while (ptc->CTRLA.bit.ENABLE == 1) {}
|
|
|
|
|
|
|
|
|
|
ptc->CTRLA.bit.SWRESET = 1;
|
|
|
|
|
while (ptc->CTRLA.bit.SWRESET == 1) {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool common_hal_touchio_touchin_get_value(touchio_touchin_obj_t *self) {
|
|
|
|
|