Skip to content

Commit 486e6c3

Browse files
committed
Fix spelling mistakes, ignore false positive for "nd".
1 parent 55329ca commit 486e6c3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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 = nd,
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 =

extras/functions_generator_firmware/SKr3_waves/led_gauge.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class LedGauge: public LedArray{
4848
two=_two;
4949
}
5050

51-
//Call it everytime you want to read the pot and update leds
51+
//Call it every time you want to read the pot and update leds
5252
void refresh(){
5353
value=analogRead(pot);
5454
if (value<=ADC_RES+100){ // pots create strange effects near 0

src/Arduino_ScienceKitCarrier.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "Arduino_GroveI2C_Ultrasonic.h"
3333
#include <PDM.h>
3434

35-
#include "../../OneWireNg/src/platform/OneWireNg_PicoRP2040.h" // forces to use gpio insted PIO hw
35+
#include "../../OneWireNg/src/platform/OneWireNg_PicoRP2040.h" // forces to use gpio instead PIO hw
3636
#define OneWireNg_CurrentPlatform OneWireNg_PicoRP2040
3737
#include "drivers/DSTherm.h"
3838
#include "utils/Placeholder.h"

src/utils/Arduino_ScienceKitCarrier_definitions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
const uint32_t SHUNT_MICRO_OHM{100000}; // check schematic R20
3636
const uint16_t MAXIMUM_AMPS{1}; // 1A
3737

38-
// Resistence
38+
// Resistance
3939
#define RESISTANCE_PIN A2
4040
#define RESISTOR_AUX 1000.0
4141
#define REF_VOLTAGE 3.3

0 commit comments

Comments
 (0)