1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

LP-72 uncrustify

This commit is contained in:
Cliff Geerdes 2016-05-24 16:09:30 -04:00 committed by Laurent Lalanne
parent fdc8b10ddf
commit 0628949afd
7 changed files with 26 additions and 26 deletions

View File

@ -140,7 +140,7 @@ int32_t PIOS_TIM_InitClock(const struct pios_tim_clock_cfg *cfg)
NVIC_InitTypeDef init = cfg->irq.init;
init.NVIC_IRQChannel = TIM1_UP_TIM10_IRQn;
NVIC_Init(&init);
#if !defined (STM32F401xx) && !defined (STM32F411xE)
#if !defined(STM32F401xx) && !defined(STM32F411xE)
} else if (cfg->timer == TIM8) {
NVIC_InitTypeDef init = cfg->irq.init;
init.NVIC_IRQChannel = TIM8_UP_TIM13_IRQn;

View File

@ -15,7 +15,7 @@ int main(int argc, char *argv[])
bool use_serial = false;
bool verify;
bool debug = false;
//bool umodereset = false;
// bool umodereset = false;
OP_DFU::Actions action = OP_DFU::actionNone;
QString file;
QString serialport;
@ -27,7 +27,7 @@ int main(int argc, char *argv[])
debug = true;
}
if (args.contains("-ur")) {
//umodereset = true;
// umodereset = true;
}
standardOutput << "OpenPilot serial firmware uploader tool." << endl;
if (args.indexOf(PROGRAMFW) + 1 < args.length()) {
@ -57,17 +57,17 @@ int main(int argc, char *argv[])
}
action = OP_DFU::actionProgram;
} else if (args.contains(COMPARECRC) || args.contains(COMPAREALL)) {
//int index;
// int index;
if (args.contains(COMPARECRC)) {
//index = args.indexOf(COMPARECRC);
// index = args.indexOf(COMPARECRC);
action = OP_DFU::actionCompareCrc;
} else {
//index = args.indexOf(COMPAREALL);
// index = args.indexOf(COMPAREALL);
action = OP_DFU::actionCompareAll;
}
} else if (args.contains(DOWNLOAD)) {
//int index;
//index = args.indexOf(DOWNLOAD);
// int index;
// index = args.indexOf(DOWNLOAD);
action = OP_DFU::actionDownload;
} else if (args.contains(STATUSREQUEST)) {
action = OP_DFU::actionStatusReq;

View File

@ -1119,11 +1119,11 @@ int DFUObject::receiveData(void *data, int size)
}
}
#define BOARD_ID_MB 1
#define BOARD_ID_INS 2
#define BOARD_ID_PIP 3
#define BOARD_ID_CC 4
#define BOARD_ID_REVO 9
#define BOARD_ID_MB 1
#define BOARD_ID_INS 2
#define BOARD_ID_PIP 3
#define BOARD_ID_CC 4
#define BOARD_ID_REVO 9
#define BOARD_ID_SPARKY2 0x92
/**

View File

@ -31,10 +31,10 @@
#include <QDebug>
#ifdef OPHID_DEBUG_ON
#define OPHID_DEBUG(fmt, args ...) qDebug("[DEBUG] " ## fmt, args)
#define OPHID_TRACE(fmt, args ...) qDebug("[TRACE] %s:%s:%d: " ## fmt, __FILE__, __func__, __LINE__, args)
#define OPHID_ERROR(fmt, args ...) qDebug("[ERROR] %s:%s:%d: " ## fmt, __FILE__, __func__, __LINE__, args)
#define OPHID_WARNING(fmt, args ...) qDebug("[WARNING] " ## fmt, args)
#define OPHID_DEBUG(fmt, args ...) qDebug("[DEBUG] "##fmt, args)
#define OPHID_TRACE(fmt, args ...) qDebug("[TRACE] %s:%s:%d: "##fmt, __FILE__, __func__, __LINE__, args)
#define OPHID_ERROR(fmt, args ...) qDebug("[ERROR] %s:%s:%d: "##fmt, __FILE__, __func__, __LINE__, args)
#define OPHID_WARNING(fmt, args ...) qDebug("[WARNING] "##fmt, args)
#else
#define OPHID_DEBUG(fmt, args ...)
#define OPHID_TRACE(fmt, args ...)

View File

@ -9,8 +9,8 @@ public:
QString gitTag;
QByteArray fwHash;
QByteArray uavoHash;
quint8 boardType;
quint8 boardRevision;
quint8 boardType;
quint8 boardRevision;
static QString idToBoardName(quint16 id)
{
switch (id) {

View File

@ -1084,11 +1084,11 @@ int DFUObject::receiveData(void *data, int size)
}
}
#define BOARD_ID_MB 1
#define BOARD_ID_INS 2
#define BOARD_ID_PIP 3
#define BOARD_ID_CC 4
#define BOARD_ID_REVO 9
#define BOARD_ID_MB 1
#define BOARD_ID_INS 2
#define BOARD_ID_PIP 3
#define BOARD_ID_CC 4
#define BOARD_ID_REVO 9
#define BOARD_ID_SPARKY2 0x92
/**

View File

@ -87,8 +87,8 @@ void RunningDeviceWidget::populate()
devicePic.load(":/uploader/images/gcs-board-cc3d.png");
break;
case 0x0903:
// Revo
// fall through to DF4B
// Revo
// fall through to DF4B
case 0x0904:
// DiscoveryF4Bare
devicePic.load(":/uploader/images/gcs-board-revo.png");