Commit fb9953a2 authored by Beat Küng's avatar Beat Küng

fix LogDownloadController: id is uint16

parent 8a23979e
...@@ -453,7 +453,7 @@ LogDownloadController::_findMissingData() ...@@ -453,7 +453,7 @@ LogDownloadController::_findMissingData()
//---------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------
void void
LogDownloadController::_requestLogData(uint8_t id, uint32_t offset, uint32_t count) LogDownloadController::_requestLogData(uint16_t id, uint32_t offset, uint32_t count)
{ {
if(_vehicle) { if(_vehicle) {
//-- APM "Fix" //-- APM "Fix"
......
...@@ -154,7 +154,7 @@ private: ...@@ -154,7 +154,7 @@ private:
void _resetSelection (bool canceled = false); void _resetSelection (bool canceled = false);
void _findMissingData (); void _findMissingData ();
void _requestLogList (uint32_t start, uint32_t end); void _requestLogList (uint32_t start, uint32_t end);
void _requestLogData (uint8_t id, uint32_t offset = 0, uint32_t count = 0xFFFFFFFF); void _requestLogData (uint16_t id, uint32_t offset = 0, uint32_t count = 0xFFFFFFFF);
bool _prepareLogDownload(); bool _prepareLogDownload();
void _setDownloading (bool active); void _setDownloading (bool active);
void _setListing (bool active); void _setListing (bool active);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment