Clarification for timers

hi Johnny !
i am using the STM 32 Nucleo f767 zi Board,
in my code i am using more timer but mbed.os have only one Timer class?
my board have 16 timers.
if any possible is there to turn on separates timers, around 5 and 6 i want to turn on.

Thanks & Regards

Hello,

you talk about hardware timers that are on the chip but Mbed::Timer is more software timer based on one hardware timer what was dedicated for system operations. In case for F767ZI it is TIM5.

If you need use hardware timers then you have to initialize them by your self via HALs.

BR, Jan