diff --git a/sint-gauntlet.c b/sint-gauntlet.c index bd82acb..94fb57f 100644 --- a/sint-gauntlet.c +++ b/sint-gauntlet.c @@ -1,37 +1,9 @@ -#include #include "pico/stdlib.h" -#include "hardware/pio.h" -#include "hardware/interp.h" -#include "hardware/timer.h" -#include "hardware/clocks.h" +#include -int64_t alarm_callback(alarm_id_t id, void *user_data) { - // Put your timeout handler code in here - return 0; -} - - - -int main() -{ - stdio_init_all(); - - - // Interpolator example code - interp_config cfg = interp_default_config(); - // Now use the various interpolator library functions for your use case - // e.g. interp_config_clamp(&cfg, true); - // interp_config_shift(&cfg, 2); - // Then set the config - interp_set_config(interp0, 0, &cfg); - - // Timer example code - This example fires off the callback after 2000ms - add_alarm_in_ms(2000, alarm_callback, NULL, false); - - - - puts("Sint!!!!!!!!!!!111+1!!!!"); - - return 0; +int main() { + stdio_init_all(); + puts("Sint!!!!!!!!!!!111+1!!!!"); + return 0; }