remove stdbool.h

This commit is contained in:
PoliEcho 2026-04-24 17:37:59 +02:00
parent daa4fa9564
commit c515c1e07e
2 changed files with 1 additions and 2 deletions

2
main.c
View File

@ -1,7 +1,6 @@
#include <hardware/irq.h>
#include <pico/time.h>
#include <sys/types.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <math.h>
@ -62,6 +61,7 @@ void core1_main(void) {
while (1) {
update_buttons();
update_inputs();
printf("vco_mode: %d, quant_enabled: %d amen_enabled: %d", state.vco_mode,state.quant_enabled,state.amen_enabled);
sleep_ms(1);
}
}

View File

@ -1,7 +1,6 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include "vco.h"
typedef struct {