Removed bullshit

This commit is contained in:
Tom-on64 2026-04-24 13:34:03 +02:00
parent a4851111eb
commit 5295255e9a

View File

@ -1,37 +1,9 @@
#include <stdio.h>
#include "pico/stdlib.h" #include "pico/stdlib.h"
#include "hardware/pio.h"
#include "hardware/interp.h"
#include "hardware/timer.h"
#include "hardware/clocks.h"
#include <stdio.h>
int64_t alarm_callback(alarm_id_t id, void *user_data) { int main() {
// Put your timeout handler code in here stdio_init_all();
return 0; puts("Sint!!!!!!!!!!!111+1!!!!");
} 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;
} }