More variant.h cleanup. LED_NOTIFICATION, remove dead code, etc (#9477)

This commit is contained in:
Jonathan Bennett
2026-01-29 12:51:48 -06:00
committed by GitHub
co-authored by GitHub
parent 45fbc0f9d3
commit dbded86dcb
59 changed files with 82 additions and 153 deletions
+3 -3
View File
@@ -428,12 +428,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define HAS_RGB_LED
#endif
#ifndef LED_STATE_OFF
#define LED_STATE_OFF 0
#endif
#ifndef LED_STATE_ON
#define LED_STATE_ON 1
#endif
#ifndef LED_STATE_OFF
#define LED_STATE_OFF (LED_STATE_ON ^ 1)
#endif
// default mapping of pins
#if defined(PIN_BUTTON2) && !defined(CANCEL_BUTTON_PIN)