Skip to content

Commit

Permalink
Added an interval range
Browse files Browse the repository at this point in the history
  • Loading branch information
bdring committed Dec 8, 2023
1 parent d8df106 commit 1bf2afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FluidNC/src/UartChannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class UartChannel : public Channel, public Configuration::Configurable {
// Configuration methods
void group(Configuration::HandlerBase& handler) override {
handler.item("uart_num", _uart_num);
handler.item("report_interval_ms", _report_interval_ms);
handler.item("report_interval_ms", _report_interval_ms, 50, 5000);
}
};

Expand Down

0 comments on commit 1bf2afd

Please sign in to comment.