* add rotary trinkey rev B * add slide trinkey * proximity sensing trinkey * update variant to shipping * forgot one! * fix two typos * fix up slide trinkey for rev B
68 lines
2.6 KiB
C++
68 lines
2.6 KiB
C++
/*
|
|
Copyright (c) 2014-2015 Arduino LLC. All right reserved.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "variant.h"
|
|
#include "Arduino.h"
|
|
/*
|
|
* Pins descriptions
|
|
*/
|
|
const PinDescription g_APinDescription[]=
|
|
{
|
|
// NeoPixel
|
|
{ PORTA, 1, PIO_DIGITAL, (PIN_ATTR_DIGITAL), No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_1 },
|
|
|
|
// Encoder pin 1
|
|
{ PORTA, 0, PIO_DIGITAL, (PIN_ATTR_DIGITAL|PIN_ATTR_PWM|PIN_ATTR_TIMER), No_ADC_Channel, PWM2_CH0, TCC2_CH0, EXTERNAL_INT_0 },
|
|
|
|
// Encoder pin 2
|
|
{ PORTA, 4, PIO_DIGITAL, (PIN_ATTR_DIGITAL|PIN_ATTR_ANALOG|PIN_ATTR_PWM|PIN_ATTR_TIMER), ADC_Channel4, PWM0_CH0, TCC0_CH0, EXTERNAL_INT_4 },
|
|
|
|
// Encoder switch
|
|
{ PORTA, 27, PIO_DIGITAL, (PIN_ATTR_DIGITAL), No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_15 },
|
|
|
|
// Touch pad
|
|
{ PORTA, 6, PIO_DIGITAL, (PIN_ATTR_DIGITAL|PIN_ATTR_ANALOG|PIN_ATTR_PWM|PIN_ATTR_TIMER), ADC_Channel6, PWM1_CH0, TCC1_CH0, EXTERNAL_INT_6 },
|
|
|
|
|
|
// USB pins
|
|
{ PORTA, 28, PIO_COM, PIN_ATTR_NONE, No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_NONE }, // USB Host enable
|
|
{ PORTA, 24, PIO_COM, PIN_ATTR_NONE, No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_NONE }, // USB/DM
|
|
{ PORTA, 25, PIO_COM, PIN_ATTR_NONE, No_ADC_Channel, NOT_ON_PWM, NOT_ON_TIMER, EXTERNAL_INT_NONE }, // USB/DP
|
|
|
|
// Fake DAC pin just so we can compile stuff
|
|
{ PORTA, 2, PIO_ANALOG, (PIN_ATTR_DIGITAL|PIN_ATTR_ANALOG|PIN_ATTR_PWM|PIN_ATTR_TIMER), ADC_Channel0, PWM2_CH0, TCC2_CH0, EXTERNAL_INT_2 }, // A0 / D0 / DAC
|
|
} ;
|
|
|
|
const void* g_apTCInstances[TCC_INST_NUM+TC_INST_NUM]={ TCC0, TCC1, TCC2, TC3, TC4, TC5 } ;
|
|
|
|
// Multi-serial objects instantiation
|
|
SERCOM sercom0( SERCOM0 ) ;
|
|
SERCOM sercom1( SERCOM1 ) ;
|
|
SERCOM sercom2( SERCOM2 ) ;
|
|
SERCOM sercom3( SERCOM3 ) ;
|
|
|
|
/*
|
|
* Serial interfaces
|
|
|
|
|
|
// Serial1
|
|
#define PIN_SERIAL1_TX (6ul)
|
|
#define PIN_SERIAL1_RX (7ul)
|
|
#define PAD_SERIAL1_TX (UART_TX_PAD_2)
|
|
#define PAD_SERIAL1_RX (SERCOM_RX_PAD_3)
|
|
*/
|