Compare commits
3 Commits
895b0d635c
...
c515c1e07e
| Author | SHA1 | Date | |
|---|---|---|---|
| c515c1e07e | |||
| daa4fa9564 | |||
| de4f958b1e |
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cmake_minimum_required(VERSION 3.13)
|
cmake_minimum_required(VERSION 3.13)
|
||||||
|
|
||||||
set(CMAKE_C_STANDARD 11)
|
set(CMAKE_C_STANDARD 23)
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 23)
|
||||||
|
|
||||||
# Initialise pico_sdk from installed location
|
# Initialise pico_sdk from installed location
|
||||||
# (note this can come from environment, CMake cache etc)
|
# (note this can come from environment, CMake cache etc)
|
||||||
|
|||||||
2
main.c
2
main.c
@ -1,7 +1,6 @@
|
|||||||
#include <hardware/irq.h>
|
#include <hardware/irq.h>
|
||||||
#include <pico/time.h>
|
#include <pico/time.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
@ -62,6 +61,7 @@ void core1_main(void) {
|
|||||||
while (1) {
|
while (1) {
|
||||||
update_buttons();
|
update_buttons();
|
||||||
update_inputs();
|
update_inputs();
|
||||||
|
printf("vco_mode: %d, quant_enabled: %d amen_enabled: %d", state.vco_mode,state.quant_enabled,state.amen_enabled);
|
||||||
sleep_ms(1);
|
sleep_ms(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user