[AVR] Fix demo build, we run out of RAM.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15930 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Theodore Ateba 2022-12-28 11:30:48 +00:00
parent d5788bf2d0
commit 00c51e1016
1 changed files with 0 additions and 1 deletions

View File

@ -39,7 +39,6 @@ static THD_FUNCTION(Thread1, arg) {
chRegSetThreadName("Blinker");
while (true) {
palTogglePad(IOPORT2, PORTB_LED1);
uartStartSend(&UARTD1, 30, (const void *) "ChibiOS PORT on ATtiny-167!.\n\r");
chThdSleepMilliseconds(1000);
}
}