Skip to content

Commit af18ad0

Browse files
committed
Fixing spelling mistakes and converting to UNIX file endings.
dos2unix and all that.
1 parent 9b82891 commit af18ad0

File tree

22 files changed

+27931
-27901
lines changed

22 files changed

+27931
-27901
lines changed

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See: https://github.com/codespell-project/codespell#using-a-config-file
33
[codespell]
44
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
5-
ignore-words-list = ,
5+
ignore-words-list = ois,
66
skip = ./.git,./.licenses,__pycache__,node_modules,./go.mod,./go.sum,./package-lock.json,./poetry.lock,./yarn.lock
77
builtin = clear,informal,en-GB_to_en-US
88
check-filenames =

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/Arduino_BMI270_BMM150.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/BMI270.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,11 +397,11 @@ void BoschSensorClass::print_rslt(int8_t rslt)
397397
panic_led_trap();
398398
break;
399399
case BMI2_E_AUX_INVALID_CFG:
400-
_debug->println("Error [" + String(rslt) + "] : Invalid auxilliary configuration");
400+
_debug->println("Error [" + String(rslt) + "] : Invalid auxiliary configuration");
401401
panic_led_trap();
402402
break;
403403
case BMI2_E_AUX_BUSY:
404-
_debug->println("Error [" + String(rslt) + "] : Auxilliary busy");
404+
_debug->println("Error [" + String(rslt) + "] : Auxiliary busy");
405405
panic_led_trap();
406406
break;
407407
case BMI2_E_SELF_TEST_FAIL:

0 commit comments

Comments
 (0)