Remove extra pragmas

This commit is contained in:
Scott Lahteine 2019-07-30 20:19:34 -05:00
parent 202d3ab3c9
commit c2b319360d
12 changed files with 0 additions and 21 deletions

View file

@ -26,8 +26,6 @@
* Teensy3.2 (__MK20DX256__)
*/
#pragma once
#include <stdint.h>
// ------------------------

View file

@ -35,8 +35,6 @@
* (Located in Marlin/buildroot/share/pin_interrupt_test/pin_interrupt_test.ino)
*/
#pragma once
#include "../../module/endstops.h"
// One ISR for all EXT-Interrupts

View file

@ -27,8 +27,6 @@
* Contributed by Triffid_Hunter and modified by Kliment, thinkyhead, Bob-the-Kuhn, et.al.
*/
#pragma once
#ifndef MASK
#define MASK(PIN) (1 << PIN)
#endif

View file

@ -67,8 +67,6 @@
* With DEACTIVATE_SERVOS_AFTER_MOVE wait SERVO_DELAY and detach.
*/
#pragma once
#if IS_TEENSY32
#include "../HAL_TEENSY31_32/HAL_Servo_Teensy.h"
#elif IS_TEENSY35 || IS_TEENSY36

View file

@ -41,7 +41,6 @@
* faster to do a Max7219_Set_Column() with a rotation of 90 or 270 degrees than to do
* a Max7219_Set_Row(). The opposite is true for rotations of 0 or 180 degrees.
*/
#pragma once
#ifndef MAX7219_ROTATE
#define MAX7219_ROTATE 0

View file

@ -274,7 +274,6 @@
* T0-T3 - Select an extruder (tool) by index: "T<n> F<units/min>"
*
*/
#pragma once
#include "../inc/MarlinConfig.h"
#include "parser.h"

View file

@ -42,8 +42,6 @@
* location: <http://www.gnu.org/licenses/>. *
****************************************************************************/
#pragma once
#include "../../inc/MarlinConfig.h"
namespace ExtUI {

View file

@ -40,8 +40,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
class matrix_3x3;
struct vector_3 {

View file

@ -25,8 +25,6 @@
* delta.h - Delta-specific functions
*/
#pragma once
extern float delta_height,
delta_endstop_adj[ABC],
delta_radius,

View file

@ -27,7 +27,6 @@
* High-level motion commands to feed the planner
* Some of these methods may migrate to the planner class.
*/
#pragma once
#include "../inc/MarlinConfig.h"

View file

@ -25,8 +25,6 @@
* scara.h - SCARA-specific functions
*/
#pragma once
#include "../core/macros.h"
extern float delta_segments_per_second;

View file

@ -27,8 +27,6 @@
* Shield - https://github.com/jmz52/Hardware
*/
#pragma once
#if !defined(STM32F4) && !defined(STM32F4xx)
#error "Oops! Select an STM32F4 board in 'Tools > Board.'"
#elif HOTENDS > 2 || E_STEPPERS > 2