Browse Source

Match the license headers in other files

pull/1/head
Scott Lahteine 7 years ago
parent
commit
105324b85b
  1. 1
      Marlin/src/HAL/HAL_AVR/servo_AVR.cpp
  2. 3
      Marlin/src/HAL/HAL_AVR/spi_pins.h
  3. 4
      Marlin/src/HAL/HAL_DUE/spi_pins.h
  4. 4
      Marlin/src/HAL/HAL_LPC1768/spi_pins.h
  5. 3
      Marlin/src/HAL/HAL_TEENSY35_36/spi_pins.h
  6. 4
      Marlin/src/HAL/HAL_endstop_interrupts.h
  7. 4
      Marlin/src/HAL/HAL_spi_pins.h
  8. 4
      Marlin/src/HAL/I2cEeprom.cpp
  9. 3
      Marlin/src/HAL/SpiEeprom.cpp
  10. 1
      Marlin/src/HAL/servo.cpp

1
Marlin/src/HAL/HAL_AVR/servo_AVR.cpp

@ -20,7 +20,6 @@
*
*/
/**
* servo.cpp - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
* Copyright (c) 2009 Michael Margolis. All right reserved.

3
Marlin/src/HAL/HAL_AVR/spi_pins.h

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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

4
Marlin/src/HAL/HAL_DUE/spi_pins.h

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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
@ -17,7 +20,6 @@
*
*/
#ifndef SPI_PINS_H_
#define SPI_PINS_H_

4
Marlin/src/HAL/HAL_LPC1768/spi_pins.h

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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
@ -17,7 +20,6 @@
*
*/
#ifndef SPI_PINS_LPC1768_H
#define SPI_PINS_LPC1768_H

3
Marlin/src/HAL/HAL_TEENSY35_36/spi_pins.h

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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

4
Marlin/src/HAL/HAL_endstop_interrupts.h

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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
@ -17,7 +20,6 @@
*
*/
#ifndef HAL_ENDSTOP_INTERRUPTS_H_
#define HAL_ENDSTOP_INTERRUPTS_H_

4
Marlin/src/HAL/HAL_spi_pins.h

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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
@ -17,7 +20,6 @@
*
*/
#ifndef HAL_SPI_PINS_H_
#define HAL_SPI_PINS_H_

4
Marlin/src/HAL/I2cEeprom.cpp

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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
@ -17,7 +20,6 @@
*
*/
/**
* Description: functions for I2C connected external EEPROM.
* Not platform dependent.

3
Marlin/src/HAL/SpiEeprom.cpp

@ -2,6 +2,9 @@
* Marlin 3D Printer Firmware
* Copyright (C) 2016 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

1
Marlin/src/HAL/servo.cpp

@ -20,7 +20,6 @@
*
*/
/**
* servo.cpp - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
* Copyright (c) 2009 Michael Margolis. All right reserved.

Loading…
Cancel
Save