Skip to content

Commit 5b867a2

Browse files
committed
fixed spelling mistakes
1 parent 4653cc9 commit 5b867a2

File tree

18 files changed

+2152
-2152
lines changed

18 files changed

+2152
-2152
lines changed

content/hacking/02.hardware/building-an-arduino-on-a-breadboard/building-an-arduino-on-a-breadboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Start by connecting a 10k ohm pullup resistor to +5V from the RESET pin in order
9191
* Pin 8 - GND
9292
* Pin 22 - GND
9393
* Pin 21 - AREF - Analog reference pin for ADC
94-
* Pin 20 - AVcc - Suppply voltage for the ADC converter. Needs to be connected to power if ADC isn't being used and to power via a low-pass filter if it is (a low pass filter is a circuit that reduces noise from the power source. This example isn't using one)
94+
* Pin 20 - AVcc - Supply voltage for the ADC converter. Needs to be connected to power if ADC isn't being used and to power via a low-pass filter if it is (a low pass filter is a circuit that reduces noise from the power source. This example isn't using one)
9595

9696
![Add the Clock & Caps](assets/arduinobb_08.jpg)
9797

content/hardware/01.mkr/01.boards/mkr-wifi-1010/tutorials/atmel-ice/using-an-atmel-ice-with-the-ide-v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ void loop() {
151151
}
152152
```
153153

154-
Before uploading the code to our board, we must optimize it for debugging. This can be made easily by clicking on the **Sketch** tab and then selecting the option **Optimize for Debbuging**:
154+
Before uploading the code to our board, we must optimize it for debugging. This can be made easily by clicking on the **Sketch** tab and then selecting the option **Optimize for Debugging**:
155155

156156
![The "Optimize for Debugging" option in the Arduino IDE 2](assets/ide_v2_t1_img06.png)
157157

content/hardware/02.hero/boards/zero/tutorials/arduino-zero-power-consumption/arduino-zero-power-consumption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The device has two different software selectable sleep modes: idle & standby.
1515

1616
The device also supports SleepWalking that allows the peripheral to wake up from sleep based on predefined threshold or when a result is ready.
1717

18-
The SAMD21 series has a dedicated module called Power Manager (PM) that controls the reset, clock generation and sleep modes of the microcontroller. In the architecture there are many clock domains that can run at different speeds, enabling the user to save power by running peripherals at a relatively low clock frequency, while maintaning high CPU performance. Furthermore, the clock of each peripheral can be disabled (mask operation), enabling the user to minimize power consumption due to unused peripherals. In particular when the device enters a sleep mode, program execution is stopped and some modules and clock domains are automatically switched off by the PM according to the sleep mode. The application code decides which sleep mode to enter and when.
18+
The SAMD21 series has a dedicated module called Power Manager (PM) that controls the reset, clock generation and sleep modes of the microcontroller. In the architecture there are many clock domains that can run at different speeds, enabling the user to save power by running peripherals at a relatively low clock frequency, while maintaining high CPU performance. Furthermore, the clock of each peripheral can be disabled (mask operation), enabling the user to minimize power consumption due to unused peripherals. In particular when the device enters a sleep mode, program execution is stopped and some modules and clock domains are automatically switched off by the PM according to the sleep mode. The application code decides which sleep mode to enter and when.
1919

2020
## Voltage Regulator
2121

@@ -27,7 +27,7 @@ Here is a comparison of an Arduino UNO and an Arduino ZERO running the same code
2727

2828
![A voltage regulator.](assets/Arduino_zero_comp.jpg)
2929

30-
As it can be easily seen, in the same conditions the Arduino Zero requires less than half power compared to the Arduino Uno with performances that are far, far away from the Uno's! This result is obtained thanks to the better power management detalied above.
30+
As it can be easily seen, in the same conditions the Arduino Zero requires less than half power compared to the Arduino Uno with performances that are far, far away from the Uno's! This result is obtained thanks to the better power management detailed above.
3131

3232
## Circuit
3333

content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ The Portenta C33 board features an onboard Wi-Fi® module, the ESP32-C3-MINI-1U
754754

755755
Some of the key capabilities of the ESP32-C3-MINI-1U module are the following:
756756

757-
- **Wi-Fi® and Bluetooth® connectivity**: The module supports 2.4 GHz Wi-Fi® (802.11 b/g/n) and Bluetooth® 5.0 connectivity. `ArduinoBLE` library support is limited to luetooth® 4.0 at this time.
757+
- **Wi-Fi® and Bluetooth® connectivity**: The module supports 2.4 GHz Wi-Fi® (802.11 b/g/n) and Bluetooth® 5.0 connectivity. `ArduinoBLE` library support is limited to Bluetooth® 4.0 at this time.
758758
- **CPU and memory**: It contains a 32-bit RISC-V single-core processor with a clock speed of up to 160 MHz. The chip also has 400 KB of SRAM and 384 KB of ROM.
759759
- **Security features**: It supports various security features, including secure boot, flash encryption, and cryptographic hardware acceleration.
760760
- **Low-power operation**: It supports multiple power modes for different low-power applications, making it suitable for battery-powered devices.

0 commit comments

Comments
 (0)