From c3b8aa310b454f08f0700701e4159c47a144d247 Mon Sep 17 00:00:00 2001 From: Phil Hord Date: Thu, 23 Jun 2016 16:35:30 -0400 Subject: [PATCH] Define missing DEBUG_LED_PIN in simulator Turning this feature on without this definition causes the simulator build to fail since the "pin" is never defined. --- simulator.h | 1 + 1 file changed, 1 insertion(+) diff --git a/simulator.h b/simulator.h index 1e2ed2c..85fc8fc 100644 --- a/simulator.h +++ b/simulator.h @@ -100,6 +100,7 @@ typedef enum { RX_ENABLE_PIN, TX_ENABLE_PIN, + DEBUG_LED_PIN, PIN_NB /* End of PINS marker; Put all new pins before this one */ } pin_t;