| 153 | |
| 154 | template<uint32_t CommandId, uint32_t MaxResponseLength> |
| 155 | struct CommandWith0Params : public Command<CommandId, MaxResponseLength, MaxResponseLength, 0> |
| 156 | { |
| 157 | CommandWith0Params(uint32_t seq) : Command<CommandId, MaxResponseLength, MaxResponseLength, 0>(seq) |
| 158 | { |
| 159 | } |
| 160 | }; |
| 161 | |
| 162 | template<uint32_t CommandId, uint32_t MaxResponseLength, uint32_t Param1> |
| 163 | struct CommandWith1Param : public Command<CommandId, MaxResponseLength, MaxResponseLength, 1> |
nothing calls this directly
no outgoing calls
no test coverage detected