* Get the name of a file in the working directory by sort-index */
| 1295 | * Get the name of a file in the working directory by sort-index |
| 1296 | */ |
| 1297 | void CardReader::selectFileByIndexSorted(const int16_t nr) { |
| 1298 | selectFileByIndex(SortFlag(TERN1(SDSORT_GCODE, sort_alpha != AS_OFF)) && (nr < sort_count) ? sort_order[nr] : nr); |
| 1299 | } |
| 1300 | |
| 1301 | #if ENABLED(SDSORT_USES_RAM) |
| 1302 | #if ENABLED(SDSORT_DYNAMIC_RAM) |
no test coverage detected