Skip to content

Commit 44d8711

Browse files
committed
document compile-time argument checking
1 parent c31fe0d commit 44d8711

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ Small Arduino/Wiring core for 8-bit tiny AVRs: ATtiny13 and ATtiny25-85 series.
33

44
Work in progress as of March 2020
55

6-
Goals: More than 50% of Arduino sketches run unmodified with picoCore, and 80% run with minor tweaks.
6+
Goals: More than 50% of Arduino sketches run unmodified with picoCore, and 80% run with minor tweaks. Unlike the official AVR core, picoCore has compile-time checking of many arguments. Calling digitalWrite(42) will cause a compile error with the message, "pin out of range".
77

8-
Only those parts of the Arduino/Wiring API which can be implmented efficiently will be supported:
8+
Only those parts of the Arduino/Wiring API which can be implmented efficiently will be supported.
99

10+
# Development Status
1011
digitalRead, digitalWrite, pinMode - implemented in v0.1
1112

1213
delay, delayMicroseconds - implemented in v0.1 using avr-gcc builtin delay functions.

0 commit comments

Comments
 (0)