Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fota/Fragmentation/WriteFile.h
- Committer:
- Jenkins@KEILDM1.dc.multitech.prv
- Date:
- 2019-08-29
- Revision:
- 69:e22889c7eaa9
- Parent:
- 68:5f787643e7d7
- Child:
- 70:0c5b5b02d17b
File content as of revision 69:e22889c7eaa9:
#ifndef _WRITE_FILE_H #define _WRITE_FILE_H #include "mDot.h" #ifdef FOTA class WriteFile { public: WriteFile(mDot* dot); ~WriteFile(); void writeFile(uint8_t* buffer, uint32_t size); void readFile(uint8_t* buffer, uint32_t size); void seekFile(uint32_t index); void createFile(uint16_t numOfFrags, uint8_t fragSize, uint8_t padding); uint64_t completeFile(uint16_t numOfFrags, uint8_t padding, uint32_t total_frags); void cleanUp(bool complete); void reset(); private: mDot* _dot; char* _temp; char* _firmware; uint8_t* _frag; uint8_t _padding; uint8_t _frag_size; uint16_t _num_frags; mDot::mdot_file _upgrade, _file; }; #endif #endif // WRITE_FILE_H