1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#ifndef MD390FILEREADER_HH
#define MD390FILEREADER_HH
#include "md390_codeplug.hh"
/** Methods to read manufacturer codeplug files.
*
* The file format of the stock CPS is still pretty simple. The first part of the file consists of
* a mal-formed DFU file. This contains a single image with a single element containing the
* first section of the memory written to the device. The second section is then added as-is
* to the end of the file. Due to the DFU header/footer, the file and memory offsets differ.
*
* <table>
* <tr><th>File Start</th> <th>Memory Start</th> <th>Size</th></tr>
* <tr><td>0x002225</td> <td>0x002000</td> <td>0x03e000</td></tr>
* </table>
*
* @ingroup md390 */
class MD390FileReader
{
public:
/** Reads manufacturer codeplug file into given codeplug object.
* @param filename Specifies the file to read.
* @param codeplug Specifies the codeplug object to store read codeplug.
* @param err Error stack.
* @returns @c true on success and @c false on error. */
static bool read(const QString &filename, MD390Codeplug *codeplug, const ErrorStack &err = ErrorStack());
};
#endif // MD390FILEREADER_HH
|