mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-08 19:46:06 +01:00
140 lines
3.6 KiB
C
140 lines
3.6 KiB
C
|
#ifndef OP_DFU_H
|
||
|
#define OP_DFU_H
|
||
|
|
||
|
#include <QByteArray>
|
||
|
#include <rawhid/pjrc_rawhid.h>
|
||
|
#include <QDebug>
|
||
|
#include <QFile>
|
||
|
#include <QCryptographicHash>
|
||
|
#include <QList>
|
||
|
#include <iostream>
|
||
|
#include "delay.h"
|
||
|
using namespace std;
|
||
|
#define BUF_LEN 64
|
||
|
|
||
|
//Command Line Options
|
||
|
#define DOWNLOAD "-dn" //done
|
||
|
#define DEVICE "-d" //done
|
||
|
//#define DOWNDESCRIPTION "-dd" //done
|
||
|
#define PROGRAMFW "-p" //done
|
||
|
#define PROGRAMDESC "-w" //done
|
||
|
#define VERIFY "-v" //done
|
||
|
#define COMPARECRC "-cc"
|
||
|
#define COMPAREALL "-ca"
|
||
|
#define STATUSREQUEST "-s" //done
|
||
|
#define LISTDEVICES "-ls" //done
|
||
|
#define RESET "-r"
|
||
|
#define JUMP "-j"
|
||
|
|
||
|
class OP_DFU
|
||
|
{
|
||
|
public:
|
||
|
enum TransferTypes
|
||
|
{
|
||
|
FW,
|
||
|
Descript
|
||
|
};
|
||
|
enum CompareType
|
||
|
{
|
||
|
crccompare,
|
||
|
bytetobytecompare
|
||
|
};
|
||
|
|
||
|
enum Status
|
||
|
{
|
||
|
DFUidle,//0
|
||
|
uploading,//1
|
||
|
wrong_packet_received,//2
|
||
|
too_many_packets,//3
|
||
|
too_few_packets,//4
|
||
|
Last_operation_Success,//5
|
||
|
downloading,//6
|
||
|
idle,//7
|
||
|
Last_operation_failed,//8
|
||
|
uploadingStarting,//9
|
||
|
outsideDevCapabilities,//10
|
||
|
CRC_Fail,//11
|
||
|
failed_jump,//12
|
||
|
abort//13
|
||
|
|
||
|
};
|
||
|
enum Actions
|
||
|
{
|
||
|
actionProgram,
|
||
|
actionProgramAndVerify,
|
||
|
actionDownload,
|
||
|
actionCompareAll,
|
||
|
actionCompareCrc,
|
||
|
actionListDevs,
|
||
|
actionStatusReq,
|
||
|
actionReset,
|
||
|
actionJump
|
||
|
};
|
||
|
|
||
|
enum Commands
|
||
|
{
|
||
|
Reserved,
|
||
|
Req_Capabilities,
|
||
|
Rep_Capabilities,
|
||
|
EnterDFU,
|
||
|
JumpFW,
|
||
|
Reset,
|
||
|
Abort_Operation,
|
||
|
Upload,
|
||
|
Op_END,
|
||
|
Download_Req,
|
||
|
Download,
|
||
|
Status_Request,
|
||
|
Status_Rep,
|
||
|
|
||
|
};
|
||
|
struct device
|
||
|
{
|
||
|
int ID;
|
||
|
quint32 FW_CRC;
|
||
|
int BL_Version;
|
||
|
int SizeOfDesc;
|
||
|
quint32 SizeOfCode;
|
||
|
bool Readable;
|
||
|
bool Writable;
|
||
|
};
|
||
|
|
||
|
void JumpToApp();
|
||
|
void ResetDevice(void);
|
||
|
bool enterDFU(int const &devNumber);
|
||
|
bool StartUpload(qint32 const &numberOfBytes, TransferTypes const & type,quint32 crc);
|
||
|
bool UploadData(qint32 const & numberOfPackets,QByteArray & data);
|
||
|
Status UploadDescription(QString & description);
|
||
|
Status UploadFirmware(const QString &sfile, const bool &verify,int device);
|
||
|
Status StatusRequest();
|
||
|
bool EndOperation();
|
||
|
void printProgBar( int const & percent,QString const& label);
|
||
|
QString DownloadDescription(int const & numberOfChars);
|
||
|
QByteArray StartDownload(qint32 const & numberOfBytes, TransferTypes const & type);
|
||
|
bool SaveByteArrayToFile(QString const & file,QByteArray const &array);
|
||
|
void CopyWords(char * source, char* destination, int count);
|
||
|
// QByteArray DownloadData(int devNumber,int numberOfPackets);
|
||
|
OP_DFU(bool debug);
|
||
|
bool findDevices();
|
||
|
QList<device> devices;
|
||
|
int numberOfDevices;
|
||
|
QString StatusToString(OP_DFU::Status const & status);
|
||
|
OP_DFU::Status CompareFirmware(const QString &sfile, const CompareType &type,int device);
|
||
|
quint32 CRC32WideFast(quint32 Crc, quint32 Size, quint32 *Buffer);
|
||
|
quint32 CRCFromQBArray(QByteArray array, quint32 Size);
|
||
|
void test();
|
||
|
int send_delay;
|
||
|
bool use_delay;
|
||
|
void AbortOperation(void);
|
||
|
private:
|
||
|
bool debug;
|
||
|
int RWFlags;
|
||
|
|
||
|
pjrc_rawhid hidHandle;
|
||
|
int setStartBit(int command){return command|0x20;}
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif // OP_DFU_H
|