| 196 | } |
| 197 | |
| 198 | void setStart(bool start) { |
| 199 | if (this->start == start) |
| 200 | return; |
| 201 | this->start = start; |
| 202 | if (start) { |
| 203 | // Start |
| 204 | midi::Message m; |
| 205 | m.setSize(1); |
| 206 | m.setStatus(0xf); |
| 207 | m.setChannel(0xa); |
| 208 | m.setFrame(frame); |
| 209 | onMessage(m); |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | void setContinue(bool cont) { |
| 214 | if (this->cont == cont) |
no test coverage detected