Compare commits

...

3 Commits

Author SHA1 Message Date
PoliEcho 5f8ace8de6 move sleep to the end off update loop 2026-04-24 17:03:30 +02:00
PoliEcho 4e70e1458e Merge branch 'master' of https://git.pupes.org/PoliEcho/sint-gauntlet 2026-04-24 17:02:57 +02:00
PoliEcho 500c93a6fd add sleep 2026-04-24 17:00:52 +02:00
+2
View File
@@ -1,4 +1,5 @@
#include <hardware/irq.h>
#include <pico/time.h>
#include <sys/types.h>
#include <stdbool.h>
#include <stdint.h>
@@ -61,6 +62,7 @@ void core1_main(void) {
while (1) {
update_buttons();
update_inputs();
sleep_ms(1);
}
}