getStatus => report_status

This commit is contained in:
Scott Lahteine 2019-01-11 19:50:52 -06:00
parent 2919f3045d
commit fb8111553e
3 changed files with 4 additions and 4 deletions

View File

@ -145,7 +145,7 @@ void GcodeSuite::M27() {
#endif
else
card.getStatus(
card.report_status(
#if NUM_SERIAL > 1
port
#endif

View File

@ -556,7 +556,7 @@ void CardReader::removeFile(const char * const name) {
}
}
void CardReader::getStatus(
void CardReader::report_status(
#if NUM_SERIAL > 1
const int8_t port/*= -1*/
#endif
@ -1045,7 +1045,7 @@ void CardReader::printingHasFinished() {
millis_t current_ms = millis();
if (auto_report_sd_interval && ELAPSED(current_ms, next_sd_report_ms)) {
next_sd_report_ms = current_ms + 1000UL * auto_report_sd_interval;
getStatus(
report_status(
#if NUM_SERIAL > 1
serialport
#endif

View File

@ -70,7 +70,7 @@ public:
const bool re_sort=false
#endif
);
static void getStatus(
static void report_status(
#if NUM_SERIAL > 1
const int8_t port = -1
#endif