better ignore

This commit is contained in:
Alessandro Mauri 2026-04-05 01:31:47 +02:00
parent 6cd3815d5a
commit a51793e529
2 changed files with 10 additions and 1 deletions

6
fw/.gitignore vendored
View File

@ -1,3 +1,9 @@
.zen .zen
.vscode .vscode
.ccls-cache .ccls-cache
.cache
*.bin
*.lst
*.map
*.elf
*.hex

View File

@ -1,6 +1,9 @@
#include <ch32fun.h> #include <ch32fun.h>
int main(void) { int main(void) {
while(true); unsigned int x = 0;
while(true) {
x = x+1;
}
return 0; return 0;
} }