Changed real time reporting to allow per connection status for which report elements to output.

Added pragmas to shut up warning from the ESP32 compiler.
This commit is contained in:
Terje Io
2026-02-04 11:28:20 +01:00
parent 0ed9404b9e
commit b435b48ec1
24 changed files with 238 additions and 178 deletions

View File

@@ -5,7 +5,7 @@
Part of grblHAL
Copyright (c) 2021-2025 Terje Io
Copyright (c) 2021-2026 Terje Io
grblHAL is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -23,6 +23,11 @@
#pragma once
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wexpansion-to-defined"
#endif
#define CAT(a, b) CAT_(a, b)
#define CAT_(a, b) a##b
@@ -1419,4 +1424,8 @@ static inline home_signals_t get_motor_fault_cap (void)
return motor_fault;
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
/*EOF*/