Skip to content

Commit 72f248c

Browse files
committed
Merge branch 'dev'
2 parents 0f1c946 + 8e06591 commit 72f248c

19 files changed

+44
-29
lines changed

.clang-format

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
Language: Cpp
3+
Standard: c++17
4+
BasedOnStyle: LLVM
5+
IndentWidth: 2
6+
UseTab: Never
7+
ColumnLimit: 100
8+
SortIncludes: false

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ repos:
88
- id: cpplint
99
files: ^src/
1010
exclude: 'lib/'
11+
args: ['--filter=-build/include_order,-runtime/references']
1112
- id: cppcheck
12-
args: [--force,--check-level=exhaustive]
13+
args: [--force,--check-level=exhaustive,--suppress=unknownMacro]
1314
files: ^src/
1415
exclude: 'lib/'
144 Bytes
Binary file not shown.

bin/firmware.bin

112 Bytes
Binary file not shown.

bin/firmware32c3.bin

160 Bytes
Binary file not shown.

bin/firmware32c3supermini.bin

144 Bytes
Binary file not shown.

bin/firmware32c3zero.bin

144 Bytes
Binary file not shown.

bin/firmware32s2.bin

80 Bytes
Binary file not shown.

bin/firmware32s3.bin

128 Bytes
Binary file not shown.

src/ICM42670P_gyro.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ bool ICM42670pGyro::calibrateSensor() {
380380
}
381381

382382
void ICM42670pGyro::debug() {
383-
// TODO: Implement debug method for ICM gyro
383+
// TODO(Levi--G) : Implement debug method for ICM gyro
384384
}
385385

386386
const char *ICM42670pGyro::getGyroFamily() { return "ICM42670-p"; }

0 commit comments

Comments
 (0)