Basic mapping structure
| 74 | |
| 75 | // Basic mapping structure |
| 76 | struct IRToCommandMappingStruct { |
| 77 | IRCommandType IRCode; |
| 78 | uint8_t Flags; |
| 79 | void (*CommandToCall)(); |
| 80 | #if defined(USE_DISPATCHER_COMMAND_STRINGS) |
| 81 | const char *CommandString; |
| 82 | #endif |
| 83 | }; |
| 84 | |
| 85 | struct IRDataForCommandDispatcherStruct { |
| 86 | uint16_t address; // to distinguish between multiple senders |
nothing calls this directly
no outgoing calls
no test coverage detected