Skip to content

Commit 79df0fc

Browse files
committed
lint
1 parent ee9056d commit 79df0fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

megaavr/extras/Ref_Serial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ The sizes of the two buffers depends on the size of the memory and which core is
450450
| Part | RAM | Rx | Tx | Notes |
451451
|----------|-------|------|------|-----------------------------------|
452452
| All | >= 2k | 64b | 64b | 16k+ 1/2-series tiny. Dx, Ex. |
453-
| ~AVR EA~ | ~1k~ | ~64b~ | ~32b~ | ~8k EA-series parts~ |
453+
| ~AVR EA~ | ~1k~ | ~64b~ | ~32b~ | ~8k EA-series parts canceled~ |
454454
| tinyAVR | 1k | 64b | 32b | 8k 2-series, 16k 0-series. |
455455
| tinyAVR | 512b | 32b | 16b | 4k 2-series and 8k 0/1-series. |
456456
| tinyAVR | less | 16b | 16b | 2/4k 0/1-series. |
@@ -468,7 +468,7 @@ While there's always some dead time between bits, that is usually *very* small,
468468
469469
470470
### How bad baud rate calculation used to be
471-
This chart shows what baud rates will work at what system clocks, on classic AVRs and modern AVRs. the difference is shocking.
471+
This chart shows what baud rates will work at what system clocks, on classic AVRs and modern AVRs. the difference is shocking.
472472
[AVR Baud Rate Accuracy Chart](https://docs.google.com/spreadsheets/d/1rzxFOs6a89jr69ouCdZp8Za1PuUdj1u1IoepTaHVFPk/edit?usp=sharing)
473473
474474
It was mentioned previously that one of most common places to encounter grossly inaccurate baud rates is classic AVRs. This example illustrates just *how bad* one of the most popular baud rate was on classic AVRs, namely 115200 baud. "Well it says the baud rate can be up to 1/8th the system clock, and I'm running at 8 MHz, no problem" you think "And see, it talks just fine to my other classic AVR". Nope. When you do this, you've dug a big hole, covered it with a tablecloth and waited until the sun went down. Adding a modern AVR or anything with a decent baud rate generator is then taking a late night stroll in the area of that covered hole. You're begging for trouble

megaavr/libraries/tinyNeoPixel_Static/examples/strandtest/strandtest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <tinyNeoPixel_Static.h>
2-
#define PIN PIN_PC3
2+
#define PIN PIN_PC3
33

44
// Parameter 1 = number of pixels in strip
55
// Parameter 2 = Arduino pin number (most are valid)

0 commit comments

Comments
 (0)