2016-07-26 01:04:19 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-07-26 01:04:19 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-07-26 01:04:19 -05: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-02 04:25:46 -05:00
|
|
|
#pragma once
|
2016-07-26 01:04:19 -05:00
|
|
|
|
2018-10-02 04:25:46 -05:00
|
|
|
//
|
|
|
|
// Prefix header for all Marlin sources
|
|
|
|
//
|
2016-07-26 01:04:19 -05:00
|
|
|
|
2017-11-19 20:26:53 -06:00
|
|
|
#include "MarlinConfigPre.h"
|
|
|
|
|
2019-07-08 23:42:29 -05:00
|
|
|
#include "../HAL/HAL.h"
|
2018-04-12 20:25:08 -05:00
|
|
|
|
2017-09-06 06:28:32 -05:00
|
|
|
#include "../pins/pins.h"
|
2018-10-11 00:58:41 -05:00
|
|
|
#include HAL_PATH(../HAL, spi_pins.h)
|
|
|
|
|
2016-07-26 01:12:03 -05:00
|
|
|
#include "Conditionals_post.h"
|
2019-07-28 23:55:24 -05:00
|
|
|
#include HAL_PATH(../HAL, inc/Conditionals_post.h)
|
2018-05-21 20:32:10 -05:00
|
|
|
|
2019-07-28 23:55:24 -05:00
|
|
|
#include "SanityCheck.h"
|
|
|
|
#include HAL_PATH(../HAL, inc/SanityCheck.h)
|
2016-07-26 01:04:19 -05:00
|
|
|
|
2017-09-06 06:28:32 -05:00
|
|
|
// Include all core headers
|
2019-09-29 04:25:39 -05:00
|
|
|
#include "../core/types.h"
|
2017-09-06 06:28:32 -05:00
|
|
|
#include "../core/language.h"
|
|
|
|
#include "../core/utility.h"
|
|
|
|
#include "../core/serial.h"
|