getStatus => report_status
This commit is contained in:
parent
2919f3045d
commit
fb8111553e
@ -145,7 +145,7 @@ void GcodeSuite::M27() {
|
||||
#endif
|
||||
|
||||
else
|
||||
card.getStatus(
|
||||
card.report_status(
|
||||
#if NUM_SERIAL > 1
|
||||
port
|
||||
#endif
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user