From e4c1700806d348811b8932004cfa268a40a00636 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Tue, 14 Sep 2021 01:07:02 -0400 Subject: remove unused ASF config files --- watch-library/config/hpl_tc_config.h | 206 ------------- watch-library/config/hpl_tcc_config.h | 547 ---------------------------------- 2 files changed, 753 deletions(-) delete mode 100644 watch-library/config/hpl_tc_config.h delete mode 100644 watch-library/config/hpl_tcc_config.h (limited to 'watch-library/config') diff --git a/watch-library/config/hpl_tc_config.h b/watch-library/config/hpl_tc_config.h deleted file mode 100644 index 61e5b1b6..00000000 --- a/watch-library/config/hpl_tc_config.h +++ /dev/null @@ -1,206 +0,0 @@ -/* Auto-generated config file hpl_tc_config.h */ -#ifndef HPL_TC_CONFIG_H -#define HPL_TC_CONFIG_H - -// <<< Use Configuration Wizard in Context Menu >>> - -#include - -#ifndef CONF_TC3_ENABLE -#define CONF_TC3_ENABLE 1 -#endif - -// Basic settings -// Prescaler -// <0=> No division -// <1=> Divide by 2 -// <2=> Divide by 4 -// <3=> Divide by 8 -// <4=> Divide by 16 -// <5=> Divide by 64 -// <6=> Divide by 256 -// <7=> Divide by 1024 -// This defines the prescaler value -// tc_prescaler -#ifndef CONF_TC3_PRESCALER -#define CONF_TC3_PRESCALER 0 -#endif -// - -// PWM Waveform Output settings -// Waveform Period Value (uS) <0x00-0xFFFFFFFF> -// The unit of this value is us. -// tc_arch_wave_per_val -#ifndef CONF_TC3_WAVE_PER_VAL -#define CONF_TC3_WAVE_PER_VAL 0x3e8 -#endif - -// Waveform Duty Value (0.1%) <0x00-0x03E8> -// The unit of this value is 1/1000. -// tc_arch_wave_duty_val -#ifndef CONF_TC3_WAVE_DUTY_VAL -#define CONF_TC3_WAVE_DUTY_VAL 0x1f4 -#endif - -/* Caculate pwm ccx register value based on WAVE_PER_VAL and Waveform Duty Value */ -#if CONF_TC3_PRESCALER < TC_CTRLA_PRESCALER_DIV64_Val -#define CONF_TC3_CC0 \ - ((uint32_t)(((double)CONF_TC3_WAVE_PER_VAL * CONF_GCLK_TC3_FREQUENCY) / 1000000 / (1 << CONF_TC3_PRESCALER) - 1)) -#define CONF_TC3_CC1 ((CONF_TC3_CC0 * CONF_TC3_WAVE_DUTY_VAL) / 1000) - -#elif CONF_TC3_PRESCALER == TC_CTRLA_PRESCALER_DIV64_Val -#define CONF_TC3_CC0 ((uint32_t)(((double)CONF_TC3_WAVE_PER_VAL * CONF_GCLK_TC3_FREQUENCY) / 64000000 - 1)) -#define CONF_TC3_CC1 ((CONF_TC3_CC0 * CONF_TC3_WAVE_DUTY_VAL) / 1000) - -#elif CONF_TC3_PRESCALER == TC_CTRLA_PRESCALER_DIV256_Val -#define CONF_TC3_CC0 ((uint32_t)(((double)CONF_TC3_WAVE_PER_VAL * CONF_GCLK_TC3_FREQUENCY) / 256000000 - 1)) -#define CONF_TC3_CC1 ((CONF_TC3_CC0 * CONF_TC3_WAVE_DUTY_VAL) / 1000) - -#elif CONF_TC3_PRESCALER == TC_CTRLA_PRESCALER_DIV1024_Val -#define CONF_TC3_CC0 ((uint32_t)(((double)CONF_TC3_WAVE_PER_VAL * CONF_GCLK_TC3_FREQUENCY) / 1024000000 - 1)) -#define CONF_TC3_CC1 ((CONF_TC3_CC0 * CONF_TC3_WAVE_DUTY_VAL) / 1000) -#endif - -// - -// Advanced settings -// Mode -// Counter in 16-bit mode -// Counter in 32-bit mode -// These bits mode -// tc_mode -#ifndef CONF_TC3_MODE -#define CONF_TC3_MODE TC_CTRLA_MODE_COUNT16_Val -#endif - -/* Unused in 16/32 bit PWM mode */ -#ifndef CONF_TC3_PER -#define CONF_TC3_PER 0x32 -#endif - -// Prescaler and Counter Synchronization Selection -// Reload or reset counter on next GCLK -// Reload or reset counter on next prescaler clock -// Reload or reset counter on next GCLK and reset prescaler counter -// These bits select if on retrigger event, the Counter should be cleared or reloaded on the next GCLK_TCx clock or on the next prescaled GCLK_TCx clock. -// tc_arch_presync -#ifndef CONF_TC3_PRESCSYNC -#define CONF_TC3_PRESCSYNC TC_CTRLA_PRESCSYNC_GCLK_Val -#endif - -// Run in standby -// Indicates whether the will continue running in standby sleep mode or not -// tc_arch_runstdby -#ifndef CONF_TC3_RUNSTDBY -#define CONF_TC3_RUNSTDBY 0 -#endif - -// On-Demand -// Indicates whether the TC3's on-demand mode is on or not -// tc_arch_ondemand -#ifndef CONF_TC3_ONDEMAND -#define CONF_TC3_ONDEMAND 0 -#endif - -// Auto Lock -// <0x0=>The Lock Update bit is not affected on overflow/underflow and re-trigger event -// <0x1=>The Lock Update bit is set on each overflow/underflow or re-trigger event -// tc_arch_alock -#ifndef CONF_TC3_ALOCK -#define CONF_TC3_ALOCK 0 -#endif - -/* Commented intentionally. Timer uses fixed value. May be used by other abstractions based on TC. */ -//#define CONF_TC3_CAPTEN0 0 -//#define CONF_TC3_CAPTEN1 0 -//#define CONF_TC3_COPEN0 0 -//#define CONF_TC3_COPEN1 0 - -/* Commented intentionally. Timer uses fixed value. May be used by other abstractions based on TC. */ -//#define CONF_TC3_DIR 0 -//#define CONF_TC3_ONESHOT 0 -//#define CONF_TC3_LUPD 0 - -// Debug Running Mode -// Indicates whether the Debug Running Mode is enabled or not -// tc_arch_dbgrun -#ifndef CONF_TC3_DBGRUN -#define CONF_TC3_DBGRUN 0 -#endif - -// Event control -// timer_event_control -#ifndef CONF_TC3_EVENT_CONTROL_ENABLE -#define CONF_TC3_EVENT_CONTROL_ENABLE 0 -#endif - -// Output Event On Match or Capture on Channel 0 -// Enable output of event on timer tick -// tc_arch_mceo0 -#ifndef CONF_TC3_MCEO0 -#define CONF_TC3_MCEO0 0 -#endif - -// Output Event On Match or Capture on Channel 1 -// Enable output of event on timer tick -// tc_arch_mceo1 -#ifndef CONF_TC3_MCEO1 -#define CONF_TC3_MCEO1 0 -#endif - -// Output Event On Timer Tick -// Enable output of event on timer tick -// tc_arch_ovfeo -#ifndef CONF_TC3_OVFEO -#define CONF_TC3_OVFEO 0 -#endif - -// Event Input -// Enable asynchronous input events -// tc_arch_tcei -#ifndef CONF_TC3_TCEI -#define CONF_TC3_TCEI 0 -#endif - -// Inverted Event Input -// Invert the asynchronous input events -// tc_arch_tcinv -#ifndef CONF_TC3_TCINV -#define CONF_TC3_TCINV 0 -#endif - -// Event action -// <0=> Event action disabled -// <1=> Start, restart or re-trigger TC on event -// <2=> Count on event -// <3=> Start on event -// <4=> Time stamp capture -// <5=> Period captured in CC0, pulse width in CC1 -// <6=> Period captured in CC1, pulse width in CC0 -// <7=> Pulse width capture -// Event which will be performed on an event -// tc_arch_evact -#ifndef CONF_TC3_EVACT -#define CONF_TC3_EVACT 0 -#endif -// - -/* Commented intentionally. Timer uses fixed value. May be used by other abstractions based on TC. */ -//#define CONF_TC3_WAVEGEN TC_CTRLA_WAVEGEN_MFRQ_Val - -/* Commented intentionally. Timer uses fixed value. May be used by other abstractions based on TC. */ -//#define CONF_TC3_INVEN0 0 -//#define CONF_TC3_INVEN1 0 - -/* Commented intentionally. Timer uses fixed value. May be used by other abstractions based on TC. */ -//#define CONF_TC3_PERBUF 0 - -/* Commented intentionally. Timer uses fixed value. May be used by other abstractions based on TC. */ -//#define CONF_TC3_CCBUF0 0 -//#define CONF_TC3_CCBUF1 0 - -// - -// <<< end of configuration section >>> - -#endif // HPL_TC_CONFIG_H diff --git a/watch-library/config/hpl_tcc_config.h b/watch-library/config/hpl_tcc_config.h deleted file mode 100644 index a8d45f5d..00000000 --- a/watch-library/config/hpl_tcc_config.h +++ /dev/null @@ -1,547 +0,0 @@ -/* Auto-generated config file hpl_tcc_config.h */ -#ifndef HPL_TCC_CONFIG_H -#define HPL_TCC_CONFIG_H - -// <<< Use Configuration Wizard in Context Menu >>> - -#include -#ifndef CONF_TCC0_ENABLE -#define CONF_TCC0_ENABLE 1 -#endif - -#ifndef CONF_TCC0_PWM_ENABLE -#define CONF_TCC0_PWM_ENABLE 1 -#endif - -// Basic settings -// TCC0 Prescaler -// No division -// Divide by 2 -// Divide by 4 -// Divide by 8 -// Divide by 16 -// Divide by 64 -// Divide by 256 -// Divide by 1024 -// This defines the TCC0 prescaler value -// tcc_prescaler -#ifndef CONF_TCC0_PRESCALER -#define CONF_TCC0_PRESCALER TCC_CTRLA_PRESCALER_DIV8_Val -#endif - -// -// TCC0 Period Value <0x000000-0xFFFFFF> -// tcc_per -#ifndef CONF_TCC0_PER -#define CONF_TCC0_PER 0x2710 -#endif -// - -// - -// PWM Waveform Output settings -// TCC0 Waveform Period Value (uS) <0x00-0xFFFFFFFF> -// The unit of this value is us. -// tcc_arch_wave_per_val -#ifndef CONF_TCC0_WAVE_PER_VAL -#define CONF_TCC0_WAVE_PER_VAL 0x3e8 -#endif - -// TCC0 Waveform Duty Value (0.1%) <0x00-0x03E8> -// The unit of this value is 1/1000. -// tcc_arch_wave_duty_val -#ifndef CONF_TCC0_WAVE_DUTY_VAL -#define CONF_TCC0_WAVE_DUTY_VAL 0x1f4 -#endif - -// TCC0 Waveform Channel Select <0x00-0x03> -// Index of the Compare Channel register, into which the Waveform Duty Value is written. -// Give index of the Compare Channel register here in 0x00-0x03 range. -// tcc_arch_sel_ch -#ifndef CONF_TCC0_SEL_CH -#define CONF_TCC0_SEL_CH 0x1 -#endif - -/* Caculate pwm ccx register value based on WAVE_PER_VAL and Waveform Duty Value */ -#if CONF_TCC0_PRESCALER < TCC_CTRLA_PRESCALER_DIV64_Val -#define CONF_TCC0_PER_REG \ - ((uint32_t)(((double)CONF_TCC0_WAVE_PER_VAL * CONF_GCLK_TCC0_FREQUENCY) / 1000000 / (1 << CONF_TCC0_PRESCALER) - 1)) -#define CONF_TCC0_CCX_REG ((uint32_t)(((double)(double)CONF_TCC0_PER_REG * CONF_TCC0_WAVE_DUTY_VAL) / 1000)) - -#elif CONF_TCC0_PRESCALER == TCC_CTRLA_PRESCALER_DIV64_Val -#define CONF_TCC0_PER_REG ((uint32_t)(((double)CONF_TCC0_WAVE_PER_VAL * CONF_GCLK_TCC0_FREQUENCY) / 64000000 - 1)) -#define CONF_TCC0_CCX_REG ((uint32_t)(((double)CONF_TCC0_PER_REG * CONF_TCC0_WAVE_DUTY_VAL) / 1000)) - -#elif CONF_TCC0_PRESCALER == TCC_CTRLA_PRESCALER_DIV256_Val -#define CONF_TCC0_PER_REG ((uint32_t)(((double)CONF_TCC0_WAVE_PER_VAL * CONF_GCLK_TCC0_FREQUENCY) / 256000000 - 1)) -#define CONF_TCC0_CCX_REG ((uint32_t)(((double)CONF_TCC0_PER_REG * CONF_TCC0_WAVE_DUTY_VAL) / 1000)) - -#elif CONF_TCC0_PRESCALER == TCC_CTRLA_PRESCALER_DIV1024_Val -#define CONF_TCC0_PER_REG ((uint32_t)(((double)CONF_TCC0_WAVE_PER_VAL * CONF_GCLK_TCC0_FREQUENCY) / 1024000000 - 1)) -#define CONF_TCC0_CCX_REG ((uint32_t)(((double)CONF_TCC0_PER_REG * CONF_TCC0_WAVE_DUTY_VAL) / 1000)) -#endif -// - -// Advanced settings -/* Commented intentionally. Timer uses fixed value of the following bit(s)/bitfield(s) of CTRL A register. - * May be used by other abstractions based on TC. */ -//#define CONF_TCC0_RESOLUTION TCC_CTRLA_RESOLUTION_NONE_Val -// Run in standby -// Indicates whether the TCC0 will continue running in standby sleep mode or not -// tcc_arch_runstdby -#ifndef CONF_TCC0_RUNSTDBY -#define CONF_TCC0_RUNSTDBY 0 -#endif - -// TCC0 Prescaler and Counter Synchronization Selection -// Reload or reset counter on next GCLK -// Reload or reset counter on next prescaler clock -// Reload or reset counter on next GCLK and reset prescaler counter -// These bits select if on retrigger event, the Counter should be cleared or reloaded on the next GCLK_TCCx clock or on the next prescaled GCLK_TCCx clock. -// tcc_arch_prescsync -#ifndef CONF_TCC0_PRESCSYNC -#define CONF_TCC0_PRESCSYNC TCC_CTRLA_PRESCSYNC_GCLK_Val -#endif - -// TCC0 Waveform Generation Selection -// Single-slope PWM -// Dual-slope, critical interrupt/event at ZERO (DSCRITICAL) -// Dual-slope, interrupt/event at ZERO (DSBOTTOM) -// Dual-slope, interrupt/event at Top and ZERO (DSBOTH) -// Dual-slope, interrupt/event at Top (DSTOP) -// tcc_arch_wavegen -#ifndef CONF_TCC0_WAVEGEN -#define CONF_TCC0_WAVEGEN TCC_WAVE_WAVEGEN_NPWM_Val -#endif -// TCC0 Auto Lock -// Indicates whether the TCC0 Auto Lock is enabled or not -// tcc_arch_alock -#ifndef CONF_TCC0_ALOCK -#define CONF_TCC0_ALOCK 0 -#endif - -// TCC0 Capture Channel 0 Enable -// Indicates whether the TCC0 Capture Channel 0 is enabled or not -// tcc_arch_cpten0 -#ifndef CONF_TCC0_CPTEN0 -#define CONF_TCC0_CPTEN0 0 -#endif - -// TCC0 Capture Channel 1 Enable -// Indicates whether the TCC0 Capture Channel 1 is enabled or not -// tcc_arch_cpten1 -#ifndef CONF_TCC0_CPTEN1 -#define CONF_TCC0_CPTEN1 0 -#endif - -// TCC0 Capture Channel 2 Enable -// Indicates whether the TCC0 Capture Channel 2 is enabled or not -// tcc_arch_cpten2 -#ifndef CONF_TCC0_CPTEN2 -#define CONF_TCC0_CPTEN2 0 -#endif - -// TCC0 Capture Channel 3 Enable -// Indicates whether the TCC0 Capture Channel 3 is enabled or not -// tcc_arch_cpten3 -#ifndef CONF_TCC0_CPTEN3 -#define CONF_TCC0_CPTEN3 0 -#endif - -// -// TCC0 Capture Channel 4 Enable -// Indicates whether the TCC0 Capture Channel 4 is enabled or not -// tcc_arch_cpten4 -#ifndef CONF_TCC0_CPTEN4 -#define CONF_TCC0_CPTEN4 0 -#endif -// -// -// TCC0 Capture Channel 5 Enable -// Indicates whether the TCC0 Capture Channel 5 is enabled or not -// tcc_arch_cpten5 -#ifndef CONF_TCC0_CPTEN5 -#define CONF_TCC0_CPTEN5 0 -#endif -// -// -// TCC0 Capture Channel 6 Enable -// Indicates whether the TCC0 Capture Channel 6 is enabled or not -// tcc_arch_cpten6 -#ifndef CONF_TCC0_CPTEN6 -#define CONF_TCC0_CPTEN6 0 -#endif -// -// -// TCC0 Capture Channel 7 Enable -// Indicates whether the TCC0 Capture Channel 7 is enabled or not -// tcc_arch_cpten7 -#ifndef CONF_TCC0_CPTEN7 -#define CONF_TCC0_CPTEN7 0 -#endif -// - -// TCC0 Lock update -// Indicates whether the TCC0 Lock update is enabled or not -// tcc_arch_lupd -#ifndef CONF_TCC0_LUPD -#define CONF_TCC0_LUPD 1 -#endif - -/* Commented intentionally. Timer uses fixed value of the following bit(s)/bitfield(s) of CTRL B register. - * May be used by other abstractions based on TC. */ -//#define CONF_TCC0_DIR 0 -//#define CONF_TCC0_ONESHOT 0 - -/* Commented intentionally. No fault control for timers. */ -/*#define CONF_TCC0_FAULT_A_SRC TCC_FCTRLA_SRC_DISABLE_Val -#define CONF_TCC0_FAULT_A_KEEP 0 -#define CONF_TCC0_FAULT_A_QUAL 0 -#define CONF_TCC0_FAULT_A_BLANK TCC_FCTRLA_BLANK_DISABLE_Val -#define CONF_TCC0_FAULT_A_RESTART 0 -#define CONF_TCC0_FAULT_A_HALT TCC_FCTRLA_HALT_DISABLE_Val -#define CONF_TCC0_FAULT_A_CHSEL TCC_FCTRLA_CHSEL_CC0_Val -#define CONF_TCC0_FAULT_A_CAPTURE TCC_FCTRLA_CAPTURE_DISABLE_Val -#define CONF_TCC0_FAULT_A_BLACNKPRESC 0 -#define CONF_TCC0_FAULT_A_BLANKVAL 0 -#define CONF_TCC0_FAULT_A_FILTERVAL 0 - -#define CONF_TCC0_FAULT_B_SRC TCC_FCTRLB_SRC_DISABLE_Val -#define CONF_TCC0_FAULT_B_KEEP 0 -#define CONF_TCC0_FAULT_B_QUAL 0 -#define CONF_TCC0_FAULT_B_BLANK TCC_FCTRLB_BLANK_DISABLE_Val -#define CONF_TCC0_FAULT_B_RESTART 0 -#define CONF_TCC0_FAULT_B_HALT TCC_FCTRLB_HALT_DISABLE_Val -#define CONF_TCC0_FAULT_B_CHSEL TCC_FCTRLB_CHSEL_CC0_Val -#define CONF_TCC0_FAULT_B_CAPTURE TCC_FCTRLB_CAPTURE_DISABLE_Val -#define CONF_TCC0_FAULT_B_BLACNKPRESC 0 -#define CONF_TCC0_FAULT_B_BLANKVAL 0 -#define CONF_TCC0_FAULT_B_FILTERVAL 0*/ - -/* Commented intentionally. No dead-time control for timers. */ -/*#define CONF_TCC0_OTMX 0 -#define CONF_TCC0_DTIEN0 0 -#define CONF_TCC0_DTIEN1 0 -#define CONF_TCC0_DTIEN2 0 -#define CONF_TCC0_DTIEN3 0 -#define CONF_TCC0_DTHS 0*/ - -/* Commented intentionally. No driver control for timers. */ -/*#define CONF_TCC0_NRE0 0 -#define CONF_TCC0_NRE1 0 -#define CONF_TCC0_NRE2 0 -#define CONF_TCC0_NRE3 0 -#define CONF_TCC0_NRE4 0 -#define CONF_TCC0_NRE5 0 -#define CONF_TCC0_NRE6 0 -#define CONF_TCC0_NRE7 0 -#define CONF_TCC0_NVR0 0 -#define CONF_TCC0_NVR1 0 -#define CONF_TCC0_NVR2 0 -#define CONF_TCC0_NVR3 0 -#define CONF_TCC0_NVR4 0 -#define CONF_TCC0_NVR5 0 -#define CONF_TCC0_NVR6 0 -#define CONF_TCC0_NVR7 0 -#define CONF_TCC0_INVEN0 0 -#define CONF_TCC0_INVEN1 0 -#define CONF_TCC0_INVEN2 0 -#define CONF_TCC0_INVEN3 0 -#define CONF_TCC0_INVEN4 0 -#define CONF_TCC0_INVEN5 0 -#define CONF_TCC0_INVEN6 0 -#define CONF_TCC0_INVEN7 0 -#define CONF_TCC0_FILTERVAL0 0 -#define CONF_TCC0_FILTERVAL1 0*/ - -// TCC0 Debug Running Mode -// Indicates whether the TCC0 Debug Running Mode is enabled or not -// tcc_arch_dbgrun -#ifndef CONF_TCC0_DBGRUN -#define CONF_TCC0_DBGRUN 0 -#endif - -/* Commented intentionally. Timer uses fixed value of the following bit(s)/bitfield(s) of Debug Control register. - * May be used by other abstractions based on TC. */ -//#define CONF_TCC0_FDDBD 0 - -// Event control -// timer_event_control -#ifndef CONF_TCC0_EVENT_CONTROL_ENABLE -#define CONF_TCC0_EVENT_CONTROL_ENABLE 0 -#endif - -// Match or Capture Channel 0 Event Output -// This bit indicates whether match/capture event on channel 0 is enabled and will be generated -// tcc_arch_mceo0 -#ifndef CONF_TCC0_MCEO0 -#define CONF_TCC0_MCEO0 0 -#endif - -// Match or Capture Channel 0 Event Input -// This bit indicates whether match/capture 0 incoming event is enabled -// tcc_arch_mcei0 -#ifndef CONF_TCC0_MCEI0 -#define CONF_TCC0_MCEI0 0 -#endif -// Match or Capture Channel 1 Event Output -// This bit indicates whether match/capture event on channel 1 is enabled and will be generated -// tcc_arch_mceo1 -#ifndef CONF_TCC0_MCEO1 -#define CONF_TCC0_MCEO1 0 -#endif - -// Match or Capture Channel 1 Event Input -// This bit indicates whether match/capture 1 incoming event is enabled -// tcc_arch_mcei1 -#ifndef CONF_TCC0_MCEI1 -#define CONF_TCC0_MCEI1 0 -#endif -// Match or Capture Channel 2 Event Output -// This bit indicates whether match/capture event on channel 2 is enabled and will be generated -// tcc_arch_mceo2 -#ifndef CONF_TCC0_MCEO2 -#define CONF_TCC0_MCEO2 0 -#endif - -// Match or Capture Channel 2 Event Input -// This bit indicates whether match/capture 2 incoming event is enabled -// tcc_arch_mcei2 -#ifndef CONF_TCC0_MCEI2 -#define CONF_TCC0_MCEI2 0 -#endif -// Match or Capture Channel 3 Event Output -// This bit indicates whether match/capture event on channel 3 is enabled and will be generated -// tcc_arch_mceo3 -#ifndef CONF_TCC0_MCEO3 -#define CONF_TCC0_MCEO3 0 -#endif - -// Match or Capture Channel 3 Event Input -// This bit indicates whether match/capture 3 incoming event is enabled -// tcc_arch_mcei3 -#ifndef CONF_TCC0_MCEI3 -#define CONF_TCC0_MCEI3 0 -#endif - -// Timer/Counter Event Input 0 -// This bit is used to enable input event 0 to the TCC -// tcc_arch_tcei0 -#ifndef CONF_TCC0_TCEI0 -#define CONF_TCC0_TCEI0 0 -#endif - -// Timer/Counter Event Input 0 Invert -// This bit inverts the event 0 input -// tcc_arch_tceinv0 -#ifndef CONF_TCC0_TCINV0 -#define CONF_TCC0_TCINV0 0 -#endif -// Timer/Counter Event Input 1 -// This bit is used to enable input event 1 to the TCC -// tcc_arch_tcei1 -#ifndef CONF_TCC0_TCEI1 -#define CONF_TCC0_TCEI1 0 -#endif - -// Timer/Counter Event Input 1 Invert -// This bit inverts the event 1 input -// tcc_arch_tceinv1 -#ifndef CONF_TCC0_TCINV1 -#define CONF_TCC0_TCINV1 0 -#endif - -// Timer/Counter Event Output -// This bit is used to enable the counter cycle event. -// tcc_arch_cnteo -#ifndef CONF_TCC0_CNTEO -#define CONF_TCC0_CNTEO 0 -#endif - -// Re-trigger Event Output -// This bit is used to enable the counter re-trigger event. -// tcc_arch_trgeo -#ifndef CONF_TCC0_TRGEO -#define CONF_TCC0_TRGEO 0 -#endif - -// Overflow/Underflow Event Output -// This bit is used to enable enable event on overflow/underflow. -// tcc_arch_ovfeo -#ifndef CONF_TCC0_OVFEO -#define CONF_TCC0_OVFEO 0 -#endif - -// Timer/Counter Interrupt and Event Output Selection -// <0=> An interrupt/event is generated when a new counter cycle starts -// <1=> An interrupt/event is generated when a counter cycle ends -// <2=> An interrupt/event is generated when a counter cycle ends, except for the first and last cycles -// <3=> An interrupt/event is generated when a new counter cycle starts or a counter cycle ends -// These bits define on which part of the counter cycle the counter event output is generated -// tcc_arch_cntsel -#ifndef CONF_TCC0_CNTSEL -#define CONF_TCC0_CNTSEL 0 -#endif - -// Timer/Counter Event Input 0 Action -// <0=>Event action disabled -// <1=>Start restart or re-trigger on event -// <2=>Count on event -// <3=>Start on event -// <4=>Increment on event -// <5=>Count on active state of asynchronous event -// <6=>Capture overflow times (Max value) -// <7=>Non-recoverable fault -// These bits define the action the TCC performs on TCE0 event input 0 -// tcc_arch_evact0 -#ifndef CONF_TCC0_EVACT0 -#define CONF_TCC0_EVACT0 0 -#endif - -// Timer/Counter Event Input 1 Action -// <0=>Event action disabled -// <1=>Re-trigger counter on event -// <2=>Direction control -// <3=>Stop counter on event -// <4=>Decrement counter on event -// <5=>Period capture value in CC0 register, pulse width capture value in CC1 register -// <6=>Period capture value in CC1 register, pulse width capture value in CC0 register -// <7=>Non-recoverable fault -// These bits define the action the TCC performs on TCE0 event input 0 -// tcc_arch_evact1 -#ifndef CONF_TCC0_EVACT1 -#define CONF_TCC0_EVACT1 0 -#endif -// - -/* Commented intentionally. No pattern control for timers. */ -/*#define CONF_TCC0_PGE0 0 -#define CONF_TCC0_PGE1 0 -#define CONF_TCC0_PGE2 0 -#define CONF_TCC0_PGE3 0 -#define CONF_TCC0_PGE4 0 -#define CONF_TCC0_PGE5 0 -#define CONF_TCC0_PGE6 0 -#define CONF_TCC0_PGE7 0 -#define CONF_TCC0_PGV0 0 -#define CONF_TCC0_PGV1 0 -#define CONF_TCC0_PGV2 0 -#define CONF_TCC0_PGV3 0 -#define CONF_TCC0_PGV4 0 -#define CONF_TCC0_PGV5 0 -#define CONF_TCC0_PGV6 0 -#define CONF_TCC0_PGV7 0*/ - -/* Commented intentionally. No pattern waveform control for timers. */ -/*#define CONF_TCC0_WAVEGEN TCC_WAVE_WAVEGEN_MFRQ_Val -#define CONF_TCC0_RAMP TCC_WAVE_RAMP_RAMP1_Val -#define CONF_TCC0_CIPEREN 0 -#define CONF_TCC0_CICCEN0 0 -#define CONF_TCC0_CICCEN1 0 -#define CONF_TCC0_CICCEN2 0 -#define CONF_TCC0_CICCEN3 0 -#define CONF_TCC0_POL0 0 -#define CONF_TCC0_POL1 0 -#define CONF_TCC0_POL2 0 -#define CONF_TCC0_POL3 0 -#define CONF_TCC0_POL4 0 -#define CONF_TCC0_POL5 0 -#define CONF_TCC0_POL6 0 -#define CONF_TCC0_POL7 0 -#define CONF_TCC0_SWAP0 0 -#define CONF_TCC0_SWAP1 0 -#define CONF_TCC0_SWAP2 0 -#define CONF_TCC0_SWAP3 0*/ - -// TCC0 Compare and Capture value 0 <0x00-0xFFFFFF> -// tcc_arch_cc0 -#ifndef CONF_TCC0_CC0 -#define CONF_TCC0_CC0 0x0 -#endif - -// TCC0 Compare and Capture value 1 <0x00-0xFFFFFF> -// tcc_arch_cc1 -#ifndef CONF_TCC0_CC1 -#define CONF_TCC0_CC1 0x0 -#endif - -// TCC0 Compare and Capture value 2 <0x00-0xFFFFFF> -// tcc_arch_cc2 -#ifndef CONF_TCC0_CC2 -#define CONF_TCC0_CC2 0x0 -#endif - -// TCC0 Compare and Capture value 3 <0x00-0xFFFFFF> -// tcc_arch_cc3 -#ifndef CONF_TCC0_CC3 -#define CONF_TCC0_CC3 0x0 -#endif - -/* Commented intentionally. No pattern control for timers. */ -/*#define CONF_TCC0_PATTB_PGEB0 0 -#define CONF_TCC0_PATTB_PGEB1 0 -#define CONF_TCC0_PATTB_PGEB2 0 -#define CONF_TCC0_PATTB_PGEB3 0 -#define CONF_TCC0_PATTB_PGEB4 0 -#define CONF_TCC0_PATTB_PGEB5 0 -#define CONF_TCC0_PATTB_PGEB6 0 -#define CONF_TCC0_PATTB_PGEB7 0 -#define CONF_TCC0_PATTB_PGVB0 0 -#define CONF_TCC0_PATTB_PGVB1 0 -#define CONF_TCC0_PATTB_PGVB2 0 -#define CONF_TCC0_PATTB_PGVB3 0 -#define CONF_TCC0_PATTB_PGVB4 0 -#define CONF_TCC0_PATTB_PGVB5 0 -#define CONF_TCC0_PATTB_PGVB6 0 -#define CONF_TCC0_PATTB_PGVB7 0*/ - -/* Commented intentionally. No waveform control for timers. */ -/*#define CONF_TCC0_WAVEGENB TCC_WAVEB_WAVEGENB_MFRQ_Val -#define CONF_TCC0_RAMPB TCC_WAVE_RAMP_RAMP1_Val -#define CONF_TCC0_CIPERENB 0 -#define CONF_TCC0_CICCEN0B 0 -#define CONF_TCC0_CICCEN1B 0 -#define CONF_TCC0_CICCEN2B 0 -#define CONF_TCC0_CICCEN3B 0 -#define CONF_TCC0_POL0B 0 -#define CONF_TCC0_POL1B 0 -#define CONF_TCC0_POL2B 0 -#define CONF_TCC0_POL3B 0 -#define CONF_TCC0_POL4B 0 -#define CONF_TCC0_POL5B 0 -#define CONF_TCC0_POL6B 0 -#define CONF_TCC0_POL7B 0 -#define CONF_TCC0_SWAP0B 0 -#define CONF_TCC0_SWAP1B 0 -#define CONF_TCC0_SWAP2B 0 -#define CONF_TCC0_SWAP3B 0*/ - -/* Commented intentionally. No buffering for timers. */ -/*#define CONF_TCC0_PERB 0 -#define CONF_TCC0_CCB0 0 -#define CONF_TCC0_CCB1 0 -#define CONF_TCC0_CCB2 0 -#define CONF_TCC0_CCB3 0*/ -// - -#define CONF_TCC0_CTRLA \ - TCC_CTRLA_PRESCALER(CONF_TCC0_PRESCALER) | (CONF_TCC0_RUNSTDBY << TCC_CTRLA_RUNSTDBY_Pos) \ - | TCC_CTRLA_PRESCSYNC(CONF_TCC0_PRESCSYNC) | (CONF_TCC0_CPTEN0 << TCC_CTRLA_CPTEN0_Pos) \ - | (CONF_TCC0_CPTEN1 << TCC_CTRLA_CPTEN1_Pos) | (CONF_TCC0_CPTEN2 << TCC_CTRLA_CPTEN2_Pos) \ - | (CONF_TCC0_CPTEN3 << TCC_CTRLA_CPTEN3_Pos) | (CONF_TCC0_ALOCK << TCC_CTRLA_ALOCK_Pos) -#define CONF_TCC0_CTRLB (CONF_TCC0_LUPD << TCC_CTRLBSET_LUPD_Pos) -#define CONF_TCC0_DBGCTRL (CONF_TCC0_DBGRUN << TCC_DBGCTRL_DBGRUN_Pos) -#define CONF_TCC0_EVCTRL \ - TCC_EVCTRL_CNTSEL(CONF_TCC0_CNTSEL) | (CONF_TCC0_OVFEO << TCC_EVCTRL_OVFEO_Pos) \ - | (CONF_TCC0_TRGEO << TCC_EVCTRL_TRGEO_Pos) | (CONF_TCC0_CNTEO << TCC_EVCTRL_CNTEO_Pos) \ - | (CONF_TCC0_MCEO0 << TCC_EVCTRL_MCEO0_Pos) | (CONF_TCC0_MCEI0 << TCC_EVCTRL_MCEI0_Pos) \ - | (CONF_TCC0_MCEO1 << TCC_EVCTRL_MCEO1_Pos) | (CONF_TCC0_MCEI1 << TCC_EVCTRL_MCEI1_Pos) \ - | (CONF_TCC0_MCEO2 << TCC_EVCTRL_MCEO2_Pos) | (CONF_TCC0_MCEI2 << TCC_EVCTRL_MCEI2_Pos) \ - | (CONF_TCC0_MCEO3 << TCC_EVCTRL_MCEO3_Pos) | (CONF_TCC0_MCEI3 << TCC_EVCTRL_MCEI3_Pos) \ - | (CONF_TCC0_TCEI0 << TCC_EVCTRL_TCEI0_Pos) | (CONF_TCC0_TCEI1 << TCC_EVCTRL_TCEI1_Pos) \ - | (CONF_TCC0_TCINV0 << TCC_EVCTRL_TCINV0_Pos) | (CONF_TCC0_TCINV1 << TCC_EVCTRL_TCINV1_Pos) \ - | TCC_EVCTRL_EVACT1(CONF_TCC0_EVACT1) | TCC_EVCTRL_EVACT0(CONF_TCC0_EVACT0) - -// <<< end of configuration section >>> - -#endif // HPL_TCC_CONFIG_H -- cgit v1.2.3