2017-01-06 05:38:30 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2017 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2017-03-18 08:17:39 +00:00
|
|
|
|
2017-01-06 05:38:30 +00:00
|
|
|
//
|
|
|
|
// some of the pin mapping functions of the Teensduino extension to the Arduino IDE
|
|
|
|
// do not function the same as the other Arduino extensions
|
|
|
|
//
|
|
|
|
|
2017-06-08 23:08:30 +00:00
|
|
|
#ifndef __PINSDEBUG_TEENSYDUINO_H__
|
|
|
|
#define __PINSDEBUG_TEENSYDUINO_H__
|
2017-01-06 05:38:30 +00:00
|
|
|
|
2017-06-08 23:08:30 +00:00
|
|
|
#undef NUM_DIGITAL_PINS
|
|
|
|
#define NUM_DIGITAL_PINS 48 // Teensy says 46 but FASTIO is 48
|
2017-01-06 05:38:30 +00:00
|
|
|
|
2017-06-08 23:08:30 +00:00
|
|
|
// "digitalPinToPort" function just returns the pin number so need to create our own.
|
|
|
|
// Can't use the name "digitalPinToPort" for our own because it interferes with the
|
|
|
|
// FAST_PWM_FAN function if we do
|
2017-01-06 05:38:30 +00:00
|
|
|
|
|
|
|
#define PA 1
|
|
|
|
#define PB 2
|
|
|
|
#define PC 3
|
|
|
|
#define PD 4
|
|
|
|
#define PE 5
|
|
|
|
#define PF 6
|
|
|
|
|
|
|
|
|
2017-06-08 23:08:30 +00:00
|
|
|
const uint8_t PROGMEM digital_pin_to_port_PGM_Teensy[] = {
|
2017-01-06 05:38:30 +00:00
|
|
|
PD, // 0 - PD0 - INT0 - PWM
|
|
|
|
PD, // 1 - PD1 - INT1 - PWM
|
|
|
|
PD, // 2 - PD2 - INT2 - RX
|
|
|
|
PD, // 3 - PD3 - INT3 - TX
|
|
|
|
PD, // 4 - PD4
|
|
|
|
PD, // 5 - PD5
|
|
|
|
PD, // 6 - PD6
|
|
|
|
PD, // 7 - PD7
|
|
|
|
PE, // 8 - PE0
|
|
|
|
PE, // 9 - PE1
|
|
|
|
PC, // 10 - PC0
|
|
|
|
PC, // 11 - PC1
|
|
|
|
PC, // 12 - PC2
|
|
|
|
PC, // 13 - PC3
|
|
|
|
PC, // 14 - PC4 - PWM
|
|
|
|
PC, // 15 - PC5 - PWM
|
|
|
|
PC, // 16 - PC6 - PWM
|
|
|
|
PC, // 17 - PC7
|
|
|
|
PE, // 18 - PE6 - INT6
|
|
|
|
PE, // 19 - PE7 - INT7
|
|
|
|
PB, // 20 - PB0
|
|
|
|
PB, // 21 - PB1
|
|
|
|
PB, // 22 - PB2
|
|
|
|
PB, // 23 - PB3
|
|
|
|
PB, // 24 - PB4 - PWM
|
|
|
|
PB, // 25 - PB5 - PWM
|
|
|
|
PB, // 26 - PB6 - PWM
|
|
|
|
PB, // 27 - PB7 - PWM
|
|
|
|
PA, // 28 - PA0
|
|
|
|
PA, // 29 - PA1
|
|
|
|
PA, // 30 - PA2
|
|
|
|
PA, // 31 - PA3
|
|
|
|
PA, // 32 - PA4
|
|
|
|
PA, // 33 - PA5
|
|
|
|
PA, // 34 - PA6
|
|
|
|
PA, // 35 - PA7
|
|
|
|
PE, // 36 - PE4 - INT4
|
|
|
|
PE, // 37 - PE5 - INT5
|
|
|
|
PF, // 38 - PF0 - A0
|
|
|
|
PF, // 39 - PF1 - A1
|
|
|
|
PF, // 40 - PF2 - A2
|
|
|
|
PF, // 41 - PF3 - A3
|
|
|
|
PF, // 42 - PF4 - A4
|
|
|
|
PF, // 43 - PF5 - A5
|
|
|
|
PF, // 44 - PF6 - A6
|
|
|
|
PF, // 45 - PF7 - A7
|
|
|
|
PE, // 46 - PE2 (not defined in teensyduino)
|
|
|
|
PE, // 47 - PE3 (not defined in teensyduino)
|
|
|
|
};
|
|
|
|
|
2017-06-08 23:08:30 +00:00
|
|
|
#define digitalPinToPort_Teensy(P) ( pgm_read_byte( digital_pin_to_port_PGM_Teensy + (P) ) )
|
2017-01-06 05:38:30 +00:00
|
|
|
|
|
|
|
// digitalPinToBitMask(pin) is OK
|
|
|
|
|
|
|
|
#define digitalRead_mod(p) digitalRead(p) // Teensyduino's version of digitalRead doesn't
|
|
|
|
// disable the PWMs so we can use it as is
|
|
|
|
|
|
|
|
// portModeRegister(pin) is OK
|
2017-06-08 23:08:30 +00:00
|
|
|
|
|
|
|
#endif // __PINSDEBUG_TEENSYDUINO_H__
|