/ ! @brief Determine the number of tracks in the specified folder. @param folder The folder number. @return Number of tracks in the specified folder, -1 if error. */ /
| 859 | */ |
| 860 | /**************************************************************************/ |
| 861 | int16_t DFPlayerMini_Fast::numTracksInFolder(uint8_t folder) |
| 862 | { |
| 863 | return query(dfplayer::GET_FOLDER_FILES, (folder >> 8) & 0xFF, folder & 0xFF); |
| 864 | } |
| 865 | |
| 866 | |
| 867 |
nothing calls this directly
no outgoing calls
no test coverage detected