build task

This commit is contained in:
2025-08-20 12:03:39 +02:00
parent 141a748d65
commit 29fda7b937
4 changed files with 39 additions and 3 deletions

5
main.c
View File

@ -4,11 +4,10 @@
int main(void) {
// Configure PA3 as output (Pin 7 on ATTINY202-SSN)
VPORTA.DIR |= (1 << 3);
VPORTA.DIR |= 8;
while (1) {
VPORTA.OUT ^= (1 << 3); // toggle PA3
VPORTA.OUT ^= 8; // toggle PA3
_delay_ms(500);
}
}