Browse Source

Mask unused var, update (c) comments (#14455)

Ludy 6 years ago
parent
commit
dab2f0c89c

+ 0
- 2
Marlin/src/HAL/HAL_DUE/InterruptVectors_Due.h View File

24
 /**
24
 /**
25
  * InterruptVectors_Due.h
25
  * InterruptVectors_Due.h
26
  *
26
  *
27
- * Copyright (c) 2017 Eduardo José Tagle. All right reserved
28
- *
29
  * This module relocates the Interrupt vector table to SRAM, allowing new
27
  * This module relocates the Interrupt vector table to SRAM, allowing new
30
  * interrupt handlers to be added at runtime. This is required because the
28
  * interrupt handlers to be added at runtime. This is required because the
31
  * Arduino runtime steals interrupt handlers that Marlin MUST use to support
29
  * Arduino runtime steals interrupt handlers that Marlin MUST use to support

+ 2
- 0
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp View File

681
         planner.synchronize();
681
         planner.synchronize();
682
         gcode.process_subcommands_now_P(PSTR(Z_PROBE_END_SCRIPT));
682
         gcode.process_subcommands_now_P(PSTR(Z_PROBE_END_SCRIPT));
683
       }
683
       }
684
+    #else
685
+      UNUSED(probe_deployed);
684
     #endif
686
     #endif
685
 
687
 
686
     return;
688
     return;

+ 0
- 17
Marlin/src/feature/dac/stepper_dac.cpp View File

22
 
22
 
23
 /**
23
 /**
24
  * stepper_dac.cpp - To set stepper current via DAC
24
  * stepper_dac.cpp - To set stepper current via DAC
25
- *
26
- * Part of Marlin
27
- *
28
- * Copyright (c) 2019 MarlinFirmware
29
- *
30
- * Marlin is free software: you can redistribute it and/or modify
31
- * it under the terms of the GNU General Public License as published by
32
- * the Free Software Foundation, either version 3 of the License, or
33
- * (at your option) any later version.
34
- *
35
- * Marlin is distributed in the hope that it will be useful,
36
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
37
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
38
- * GNU General Public License for more details.
39
- *
40
- * You should have received a copy of the GNU General Public License
41
- * along with Marlin.  If not, see <http://www.gnu.org/licenses/>.
42
  */
25
  */
43
 
26
 
44
 #include "../../inc/MarlinConfig.h"
27
 #include "../../inc/MarlinConfig.h"

+ 0
- 2
Marlin/src/module/stepper_indirection.cpp View File

26
  * Stepper motor driver indirection to allow some stepper functions to
26
  * Stepper motor driver indirection to allow some stepper functions to
27
  * be done via SPI/I2c instead of direct pin manipulation.
27
  * be done via SPI/I2c instead of direct pin manipulation.
28
  *
28
  *
29
- * Part of Marlin
30
- *
31
  * Copyright (c) 2015 Dominik Wenger
29
  * Copyright (c) 2015 Dominik Wenger
32
  */
30
  */
33
 
31
 

+ 4
- 16
Marlin/src/module/stepper_indirection.h View File

22
 #pragma once
22
 #pragma once
23
 
23
 
24
 /**
24
 /**
25
- * stepper_indirection.h - stepper motor driver indirection macros
26
- * to allow some stepper functions to be done via SPI/I2c instead of direct pin manipulation
27
- * Part of Marlin
25
+ * stepper_indirection.h
28
  *
26
  *
29
- * Copyright (c) 2015 Dominik Wenger
30
- *
31
- * Marlin is free software: you can redistribute it and/or modify
32
- * it under the terms of the GNU General Public License as published by
33
- * the Free Software Foundation, either version 3 of the License, or
34
- * at your option) any later version.
35
- *
36
- * Marlin is distributed in the hope that it will be useful,
37
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
38
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
39
- * GNU General Public License for more details.
27
+ * Stepper motor driver indirection to allow some stepper functions to
28
+ * be done via SPI/I2c instead of direct pin manipulation.
40
  *
29
  *
41
- * You should have received a copy of the GNU General Public License
42
- * along with Marlin.  If not, see <http://www.gnu.org/licenses/>.
30
+ * Copyright (c) 2015 Dominik Wenger
43
  */
31
  */
44
 
32
 
45
 #include "../inc/MarlinConfig.h"
33
 #include "../inc/MarlinConfig.h"

+ 1
- 1
Marlin/src/pins/pins_BIGTREE_SKR_MINI_V1_1.h View File

1
 /**
1
 /**
2
  * Marlin 3D Printer Firmware
2
  * Marlin 3D Printer Firmware
3
- * Copyright (c) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
  *
4
  *
5
  * Based on Sprinter and grbl.
5
  * Based on Sprinter and grbl.
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm

+ 1
- 1
Marlin/src/pins/pins_FYSETC_AIO_II.h View File

1
 /**
1
 /**
2
  * Marlin 3D Printer Firmware
2
  * Marlin 3D Printer Firmware
3
- * Copyright (c) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
  *
4
  *
5
  * Based on Sprinter and grbl.
5
  * Based on Sprinter and grbl.
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm

+ 1
- 1
Marlin/src/pins/pins_FYSETC_CHEETAH.h View File

1
 /**
1
 /**
2
  * Marlin 3D Printer Firmware
2
  * Marlin 3D Printer Firmware
3
- * Copyright (c) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
  *
4
  *
5
  * Based on Sprinter and grbl.
5
  * Based on Sprinter and grbl.
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm

+ 1
- 1
Marlin/src/pins/pins_JGAURORA_A5S_A1.h View File

1
 /**
1
 /**
2
  * Marlin 3D Printer Firmware
2
  * Marlin 3D Printer Firmware
3
- * Copyright (c) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
  *
4
  *
5
  * Based on Sprinter and grbl.
5
  * Based on Sprinter and grbl.
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm

+ 1
- 1
Marlin/src/pins/pins_MKS_ROBIN_MINI.h View File

1
 /**
1
 /**
2
  * Marlin 3D Printer Firmware
2
  * Marlin 3D Printer Firmware
3
- * Copyright (c) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
3
+ * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
  *
4
  *
5
  * Based on Sprinter and grbl.
5
  * Based on Sprinter and grbl.
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
6
  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm

Loading…
Cancel
Save