| 161 | |
| 162 | template<uint32_t CommandId, uint32_t MaxResponseLength, uint32_t Param1> |
| 163 | struct CommandWith1Param : public Command<CommandId, MaxResponseLength, MaxResponseLength, 1> |
| 164 | { |
| 165 | CommandWith1Param(uint32_t seq) : Command<CommandId, MaxResponseLength, MaxResponseLength, 1>(seq) |
| 166 | { |
| 167 | this->data_.parameters[0] = Param1; |
| 168 | } |
| 169 | }; |
| 170 | |
| 171 | template<uint32_t CommandId, uint32_t MaxResponseLength, uint32_t MinResponseLength, uint32_t Param1> |
| 172 | struct CommandWith1ParamLarge : public Command<CommandId, MaxResponseLength, MinResponseLength, 1> |
nothing calls this directly
no outgoing calls
no test coverage detected