diff options
Diffstat (limited to 'examples/test-session.cpp')
-rw-r--r-- | examples/test-session.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/test-session.cpp b/examples/test-session.cpp index 845547d..72d64d6 100644 --- a/examples/test-session.cpp +++ b/examples/test-session.cpp @@ -512,7 +512,7 @@ void cmd_sequential_gpio_writes(void) { // make sure to skip the TX/RX headers for(uint32 i = 2; i<NR_GPIO_PINS; i++) { COMM.print("GPIO write out on header D"); - COMM.print(i, DEC); + COMM.print((int)i, DEC); COMM.println("..."); pinMode(i, OUTPUT); do { @@ -614,9 +614,8 @@ void init_all_timers(uint16 prescale) { timer_init(TIMER1, prescale); timer_init(TIMER2, prescale); timer_init(TIMER3, prescale); -#if NR_TIMERS >= 4 timer_init(TIMER4, prescale); -#elif NR_TIMERS >= 8 // TODO test this on maple native +#ifdef STM32_HIGH_DENSITY timer_init(TIMER5, prescale); timer_init(TIMER6, prescale); timer_init(TIMER7, prescale); |