* Contains pin number and enable status of the feedback LED */
| 40 | * Contains pin number and enable status of the feedback LED |
| 41 | */ |
| 42 | struct FeedbackLEDControlStruct { |
| 43 | uint8_t FeedbackLEDPin = USE_DEFAULT_FEEDBACK_LED_PIN; ///< if USE_DEFAULT_FEEDBACK_LED_PIN / 0xFF, then use digitalWriteFast(LED_BUILTIN,..) otherwise use digitalWrite(FeedbackLEDPin,..) |
| 44 | bool LedFeedbackEnabled; ///< Disabled for receive at default. Feedback for send is always enabled and can be disabled by NO_LED_SEND_FEEDBACK_CODE or #define NO_LED_FEEDBACK_CODE macros |
| 45 | }; |
| 46 | |
| 47 | struct FeedbackLEDControlStruct FeedbackLEDControl; ///< The feedback LED control instance |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected