clang-format without silly alignment
This commit is contained in:
parent
f8b7cc5e8b
commit
6965f03068
@ -3,8 +3,8 @@ Language: Cpp
|
||||
# BasedOnStyle: Google
|
||||
AccessModifierOffset: -1
|
||||
AlignAfterOpenBracket: Align
|
||||
AlignConsecutiveAssignments: true
|
||||
AlignConsecutiveDeclarations: true
|
||||
AlignConsecutiveAssignments: false
|
||||
AlignConsecutiveDeclarations: false
|
||||
AlignEscapedNewlines: Left
|
||||
AlignOperands: true
|
||||
AlignTrailingComments: true
|
||||
|
@ -2,8 +2,8 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "esp_log.h"
|
||||
#include "sdkconfig.h"
|
||||
#include "i2c_mutex.h"
|
||||
#include "sdkconfig.h"
|
||||
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/task.h"
|
||||
|
@ -167,8 +167,8 @@ void UART_GPS::ProcessLine(const char *line, size_t len) {
|
||||
data_.pdop = minmea_tofloat(&gsa.pdop);
|
||||
data_.hdop = minmea_tofloat(&gsa.hdop);
|
||||
data_.vdop = minmea_tofloat(&gsa.vdop);
|
||||
ESP_LOGV(TAG, "GSA: pdop=%f, hdop=%f, vdop=%f",
|
||||
data_.pdop, data_.hdop, data_.vdop);
|
||||
ESP_LOGV(TAG, "GSA: pdop=%f, hdop=%f, vdop=%f", data_.pdop, data_.hdop,
|
||||
data_.vdop);
|
||||
xSemaphoreGive(mutex_);
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user