/ ! @brief Loop a specific track. @param trackNum The track number to play. */ /
| 310 | */ |
| 311 | /**************************************************************************/ |
| 312 | void DFPlayerMini_Fast::loop(uint16_t trackNum) |
| 313 | { |
| 314 | sendStack.commandValue = dfplayer::PLAYBACK_MODE; |
| 315 | sendStack.feedbackValue = dfplayer::NO_FEEDBACK; |
| 316 | sendStack.paramMSB = (trackNum >> 8) & 0xFF; |
| 317 | sendStack.paramLSB = trackNum & 0xFF; |
| 318 | |
| 319 | findChecksum(sendStack); |
| 320 | sendData(); |
| 321 | } |
| 322 | |
| 323 | |
| 324 |
nothing calls this directly
no outgoing calls
no test coverage detected