Skip to content

Commit 7d47b10

Browse files
committed
Tables update
1 parent f0ec61b commit 7d47b10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/learn/03.programming/06.memory-guide/memory-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Microcontrollers are usually used in embedded applications. They must perform de
5353
Arduino® boards are mainly based on two families of microcontrollers: **AVR®** and **ARM®**. While AVR® family microcontrollers are based on the Harvard architecture model, ARM® family microcontrollers can be based on either von Neuman or Harvard architectures models. The following table summarizes Arduino boards microcontrollers architectures:
5454

5555
| **Board** | **Microcontroller** | **Family** | **Architecture** |
56-
|:-------------------:|:-------------------:|:----------------:|:----------------:|
56+
|---------------------|---------------------|------------------|------------------|
5757
| UNO Mini | ATmega328P | AVR | Harvard |
5858
| UNO Rev3 | ATmega328P | AVR | Harvard |
5959
| UNO WiFi Rev2 | ATmega4809 | AVR | Harvard |
@@ -140,7 +140,7 @@ The ARM-based microcontroller's memory is organized into the following sections
140140
The following table summarizes a specific Arduino® board's memory allocation:
141141

142142
| **Board** | **Microcontroller** | **Family** | **Architecture** | **Flash** | **SRAM** | **EEPROM** |
143-
|:---------------------------------:|:-------------------:|:----------------:|:----------------:|:---------:|:--------:|:----------:|
143+
|-----------------------------------|---------------------|------------------|------------------|-----------|----------|------------|
144144
| UNO Mini | ATmega328P | AVR | Harvard | 32kB | 2kB | 1kB |
145145
| UNO Rev3 | ATmega328P | AVR | Harvard | 32kB | 2kB | 1kB |
146146
| UNO WiFi Rev2 | ATmega4809 | AVR | Harvard | 48kB | 6kB | 256B |
@@ -180,7 +180,7 @@ Let us talk more about **memory usage measurement** in Arduino® boards.
180180

181181
Flash memory on Arduino® boards can be measured with the help of the Arduino IDE. As stated before, Flash memory is where the application code is stored; **the Arduino IDE reports Flash memory usage through its compiler output console** to let developers know how much Flash memory resources are being used.
182182

183-
For example, the IDE's compiler output console an AVR-based Arduino® board, the UNO, with the `Blink.ino` example sketch uploaded, is shown in the image below:
183+
For example, the IDE's compiler output console an AVR-based Arduino® board, the UNO, is shown in the image below:
184184

185185
![Flash memory memory measurement in an AVR-based Arduino® board](assets/avr_nano.png)
186186

0 commit comments

Comments
 (0)