#include "pico/stdlib.h"
#include "hardware/pwm.h"
#include "hardware/pll.h"
#include "hardware/clocks.h"
#include "hardware/structs/pll.h"
#include "hardware/structs/clocks.h"
#include "ctrl.h"
int main() {
stdio_init_all();
gpio_set_function(0, GPIO_FUNC_UART);
gpio_set_function(1, GPIO_FUNC_UART);
printf("Test\n");
ctrl_init();
ctrl_select_design(42);
//while (!tud_cdc_connected()) { sleep_ms(100); }
while (1) {
getline();
}
}