
The RS command allows random read access of raw sectors of an SD card or USB stick. The storage device does not need to be formatted.
RS requires a single argument that is the sector number. After the command was invoked, the module sends back 512 bytes which is the content of the requested sector.
ERR_OK (0) if sector was read successfully.
ERR_FR_NOT_READY (13) if disk read operation failed.
RS 1234
Read sector 1234
Sector contents are delived as raw binary data.