Skip to content

Commit 8d43061

Browse files
committed
using prints_P instead of prints saves 14B
1 parent 3e8182b commit 8d43061

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/echo/echo.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ void setup() {}
66
void loop()
77
{
88
uint8_t c;
9-
prints("\r\npicoUART echo ");
9+
prints_P(PSTR("\r\npicoUART echo "));
1010
c = purx();
11-
prints(" got: ");
11+
prints_P(PSTR(" got: "));
1212
putx(c);
1313
}
1414

0 commit comments

Comments
 (0)