2018-10-03 08:26:07 +00:00
|
|
|
/**
|
2018-10-24 03:35:09 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-10-24 03:35:09 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-03 08:26:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define SPI Pins: SCK, MISO, MOSI, SS
|
|
|
|
*/
|
|
|
|
#ifndef SCK_PIN
|
2018-11-04 21:03:45 +00:00
|
|
|
#define SCK_PIN PIN_SPI_SCK
|
2018-10-03 08:26:07 +00:00
|
|
|
#endif
|
|
|
|
#ifndef MISO_PIN
|
2018-11-04 21:03:45 +00:00
|
|
|
#define MISO_PIN PIN_SPI_MISO
|
2018-10-03 08:26:07 +00:00
|
|
|
#endif
|
|
|
|
#ifndef MOSI_PIN
|
2018-11-04 21:03:45 +00:00
|
|
|
#define MOSI_PIN PIN_SPI_MOSI
|
2018-10-03 08:26:07 +00:00
|
|
|
#endif
|
|
|
|
#ifndef SS_PIN
|
2018-11-04 21:03:45 +00:00
|
|
|
#define SS_PIN PIN_SPI_SS
|
2018-10-03 08:26:07 +00:00
|
|
|
#endif
|