Skip to content

Commit 27c55f8

Browse files
committed
Convert all line endings to unix format
There was a stray Windows line ending at the end of the files, which caused some editors to switch the complete file to Windows line endings on save. This automatism is a new thing since it never caused issues in the past.
1 parent 25fe400 commit 27c55f8

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

Arduino_Pedelec_Controller/HX711.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ void HX711::power_down() {
128128

129129
void HX711::power_up() {
130130
digitalWrite(PD_SCK, LOW);
131-
}
131+
}

Arduino_Pedelec_Controller/HX711.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ class HX711
7474
void power_up();
7575
};
7676

77-
#endif /* HX711_h */
77+
#endif /* HX711_h */

Arduino_Pedelec_Controller/LiquidCrystalDogm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,4 +364,4 @@ void LiquidCrystal::write8bits(uint8_t value)
364364
}
365365

366366
pulseEnable();
367-
}
367+
}

Arduino_Pedelec_Controller/PID_v1_nano.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,4 +213,4 @@ void PID::ShrinkIntegral()
213213
lastTimeShrink = now;
214214
}
215215
}
216-
216+

Arduino_Pedelec_Controller/PID_v1_nano.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ class PID
8080
bool inAuto;
8181
};
8282
#endif
83-
83+

Arduino_Pedelec_Controller/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,4 @@ const char msg_gear_shift_high_gear[] PROGMEM = "High gear active";
279279
const char msg_gear_shift_auto_selection[] PROGMEM = "Auto gear shift";
280280
#endif
281281

282-
#endif
282+
#endif

Arduino_Pedelec_Controller/display_bafang.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,4 +307,4 @@ void BF_sendmessage(BAFANG_t* BF_ctx,uint8_t count)
307307

308308

309309

310-
#endif // (DISPLAY_TYPE & DISPLAY_TYPE_BAFANG)
310+
#endif // (DISPLAY_TYPE & DISPLAY_TYPE_BAFANG)

Arduino_Pedelec_Controller/display_bafang.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ void BF_sendmessage(BAFANG_t* BF_ctx,uint8_t count);
110110

111111

112112
#endif // BAFANG
113-
#endif // (DISPLAY_TYPE & DISPLAY_TYPE_BAFANG)
113+
#endif // (DISPLAY_TYPE & DISPLAY_TYPE_BAFANG)

Arduino_Pedelec_Controller/display_kingmeter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,4 +440,4 @@ static void KM_901U_Service(KINGMETER_t* KM_ctx)
440440
}
441441
#endif
442442

443-
#endif // (DISPLAY_TYPE & DISPLAY_TYPE_KINGMETER)
443+
#endif // (DISPLAY_TYPE & DISPLAY_TYPE_KINGMETER)

Arduino_Pedelec_Controller/serial_command.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,4 +251,4 @@ void parse_serial(const char &read_c, const byte port)
251251
}
252252
break;
253253
}
254-
}
254+
}

0 commit comments

Comments
 (0)