Browse Source

Rename files to move them in the IDE

Scott Lahteine 9 years ago
parent
commit
a22a228bcc

+ 2
- 2
Marlin/BlinkM.cpp View File

1
 /*
1
 /*
2
-  BlinkM.cpp - Library for controlling a BlinkM over i2c
2
+  blinkm.cpp - Library for controlling a BlinkM over i2c
3
   Created by Tim Koster, August 21 2013.
3
   Created by Tim Koster, August 21 2013.
4
 */
4
 */
5
 #include "Marlin.h"
5
 #include "Marlin.h"
6
 #ifdef BLINKM
6
 #ifdef BLINKM
7
 
7
 
8
-#include "BlinkM.h"
8
+#include "blinkm.h"
9
 
9
 
10
 void SendColors(byte red, byte grn, byte blu) {
10
 void SendColors(byte red, byte grn, byte blu) {
11
   Wire.begin(); 
11
   Wire.begin(); 

+ 1
- 1
Marlin/BlinkM.h View File

1
 /*
1
 /*
2
-  BlinkM.h
2
+  blinkm.h
3
   Library header file for BlinkM library
3
   Library header file for BlinkM library
4
  */
4
  */
5
 #if ARDUINO >= 100
5
 #if ARDUINO >= 100

+ 2
- 2
Marlin/Makefile View File

267
 CXXSRC = WMath.cpp WString.cpp Print.cpp Marlin_main.cpp	\
267
 CXXSRC = WMath.cpp WString.cpp Print.cpp Marlin_main.cpp	\
268
 	MarlinSerial.cpp Sd2Card.cpp SdBaseFile.cpp SdFatUtil.cpp	\
268
 	MarlinSerial.cpp Sd2Card.cpp SdBaseFile.cpp SdFatUtil.cpp	\
269
 	SdFile.cpp SdVolume.cpp motion_control.cpp planner.cpp		\
269
 	SdFile.cpp SdVolume.cpp motion_control.cpp planner.cpp		\
270
-	stepper.cpp temperature.cpp cardreader.cpp ConfigurationStore.cpp \
271
-	watchdog.cpp SPI.cpp Servo.cpp Tone.cpp ultralcd.cpp digipot_mcp4451.cpp \
270
+	stepper.cpp temperature.cpp cardreader.cpp configuration_store.cpp \
271
+	watchdog.cpp SPI.cpp servo.cpp Tone.cpp ultralcd.cpp digipot_mcp4451.cpp \
272
 	vector_3.cpp qr_solve.cpp
272
 	vector_3.cpp qr_solve.cpp
273
 ifeq ($(LIQUID_TWI2), 0)
273
 ifeq ($(LIQUID_TWI2), 0)
274
 CXXSRC += LiquidCrystal.cpp
274
 CXXSRC += LiquidCrystal.cpp

+ 4
- 4
Marlin/Marlin_main.cpp View File

49
 #include "motion_control.h"
49
 #include "motion_control.h"
50
 #include "cardreader.h"
50
 #include "cardreader.h"
51
 #include "watchdog.h"
51
 #include "watchdog.h"
52
-#include "ConfigurationStore.h"
52
+#include "configuration_store.h"
53
 #include "language.h"
53
 #include "language.h"
54
 #include "pins_arduino.h"
54
 #include "pins_arduino.h"
55
 #include "math.h"
55
 #include "math.h"
56
 
56
 
57
 #ifdef BLINKM
57
 #ifdef BLINKM
58
-  #include "BlinkM.h"
58
+  #include "blinkm.h"
59
   #include "Wire.h"
59
   #include "Wire.h"
60
 #endif
60
 #endif
61
 
61
 
62
 #if NUM_SERVOS > 0
62
 #if NUM_SERVOS > 0
63
-  #include "Servo.h"
63
+  #include "servo.h"
64
 #endif
64
 #endif
65
 
65
 
66
 #if HAS_DIGIPOTSS
66
 #if HAS_DIGIPOTSS
4417
     if (code_seen('Z')) {
4417
     if (code_seen('Z')) {
4418
       value = code_value();
4418
       value = code_value();
4419
       if (Z_PROBE_OFFSET_RANGE_MIN <= value && value <= Z_PROBE_OFFSET_RANGE_MAX) {
4419
       if (Z_PROBE_OFFSET_RANGE_MIN <= value && value <= Z_PROBE_OFFSET_RANGE_MAX) {
4420
-        zprobe_zoffset = -value; // compare w/ line 278 of ConfigurationStore.cpp
4420
+        zprobe_zoffset = -value; // compare w/ line 278 of configuration_store.cpp
4421
         SERIAL_ECHO_START;
4421
         SERIAL_ECHO_START;
4422
         SERIAL_ECHOLNPGM(MSG_ZPROBE_ZOFFSET " " MSG_OK);
4422
         SERIAL_ECHOLNPGM(MSG_ZPROBE_ZOFFSET " " MSG_OK);
4423
         SERIAL_EOL;
4423
         SERIAL_EOL;

+ 2
- 2
Marlin/Servo.cpp View File

1
 /*
1
 /*
2
- Servo.cpp - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
2
+ servo.cpp - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
3
  Copyright (c) 2009 Michael Margolis.  All right reserved.
3
  Copyright (c) 2009 Michael Margolis.  All right reserved.
4
 
4
 
5
  This library is free software; you can redistribute it and/or
5
  This library is free software; you can redistribute it and/or
48
 #include <avr/interrupt.h>
48
 #include <avr/interrupt.h>
49
 #include <Arduino.h>
49
 #include <Arduino.h>
50
 
50
 
51
-#include "Servo.h"
51
+#include "servo.h"
52
 
52
 
53
 #define usToTicks(_us)    (( clockCyclesPerMicrosecond()* _us) / 8)     // converts microseconds to tick (assumes prescale of 8)  // 12 Aug 2009
53
 #define usToTicks(_us)    (( clockCyclesPerMicrosecond()* _us) / 8)     // converts microseconds to tick (assumes prescale of 8)  // 12 Aug 2009
54
 #define ticksToUs(_ticks) (( (unsigned)_ticks * 8)/ clockCyclesPerMicrosecond() ) // converts from ticks back to microseconds
54
 #define ticksToUs(_ticks) (( (unsigned)_ticks * 8)/ clockCyclesPerMicrosecond() ) // converts from ticks back to microseconds

+ 3
- 3
Marlin/Servo.h View File

1
 /*
1
 /*
2
-  Servo.h - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
2
+  servo.h - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
3
   Copyright (c) 2009 Michael Margolis.  All right reserved.
3
   Copyright (c) 2009 Michael Margolis.  All right reserved.
4
 
4
 
5
   This library is free software; you can redistribute it and/or
5
   This library is free software; you can redistribute it and/or
42
    detach()    - Stops an attached servos from pulsing its i/o pin.
42
    detach()    - Stops an attached servos from pulsing its i/o pin.
43
  */
43
  */
44
 
44
 
45
-#ifndef Servo_h
46
-#define Servo_h
45
+#ifndef servo_h
46
+#define servo_h
47
 
47
 
48
 #include <inttypes.h>
48
 #include <inttypes.h>
49
 
49
 

Marlin/ConfigurationStore.cpp → Marlin/configuration_store.cpp View File

1
 /**
1
 /**
2
- * ConfigurationStore.cpp
2
+ * configuration_store.cpp
3
  *
3
  *
4
  * Configuration and EEPROM storage
4
  * Configuration and EEPROM storage
5
  *
5
  *
93
 #include "planner.h"
93
 #include "planner.h"
94
 #include "temperature.h"
94
 #include "temperature.h"
95
 #include "ultralcd.h"
95
 #include "ultralcd.h"
96
-#include "ConfigurationStore.h"
96
+#include "configuration_store.h"
97
 
97
 
98
 #ifdef MESH_BED_LEVELING
98
 #ifdef MESH_BED_LEVELING
99
    #include "mesh_bed_leveling.h"
99
    #include "mesh_bed_leveling.h"

Marlin/ConfigurationStore.h → Marlin/configuration_store.h View File

1
-#ifndef CONFIGURATIONSTORE_H
2
-#define CONFIGURATIONSTORE_H
1
+#ifndef CONFIGURATION_STORE_H
2
+#define CONFIGURATION_STORE_H
3
 
3
 
4
 #include "Configuration.h"
4
 #include "Configuration.h"
5
 
5
 
19
   FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
19
   FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
20
 #endif
20
 #endif
21
 
21
 
22
-#endif //CONFIGURATIONSTORE_H
22
+#endif //CONFIGURATION_STORE_H

Marlin/DOGMbitmaps.h → Marlin/dogm_bitmaps.h View File


+ 1
- 1
Marlin/dogm_lcd_implementation.h View File

29
 #endif
29
 #endif
30
 
30
 
31
 #include <U8glib.h>
31
 #include <U8glib.h>
32
-#include "DOGMbitmaps.h"
32
+#include "dogm_bitmaps.h"
33
 
33
 
34
 #include "ultralcd.h"
34
 #include "ultralcd.h"
35
 #include "ultralcd_st7920_u8glib_rrd.h"
35
 #include "ultralcd_st7920_u8glib_rrd.h"

+ 1
- 1
Marlin/pins_SAV_MKI.h View File

82
   #define HOME_PIN          -1 // A4 = marlin 44 - teensy = 42
82
   #define HOME_PIN          -1 // A4 = marlin 44 - teensy = 42
83
 
83
 
84
   #ifdef NUM_SERVOS
84
   #ifdef NUM_SERVOS
85
-    #define SERVO0_PIN       41 // In teensy's pin definition for pinMode (in Servo.cpp)
85
+    #define SERVO0_PIN       41 // In teensy's pin definition for pinMode (in servo.cpp)
86
   #endif
86
   #endif
87
 
87
 
88
 #endif // SAV_3DLCD
88
 #endif // SAV_3DLCD

+ 1
- 1
Marlin/ultralcd.cpp View File

5
 #include "cardreader.h"
5
 #include "cardreader.h"
6
 #include "temperature.h"
6
 #include "temperature.h"
7
 #include "stepper.h"
7
 #include "stepper.h"
8
-#include "ConfigurationStore.h"
8
+#include "configuration_store.h"
9
 
9
 
10
 int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
10
 int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
11
 
11
 

Loading…
Cancel
Save