Page 1 of 1

Bsp equivalents

Posted: Thu Sep 30, 2021 1:35 pm
by SeeCwriter
Are there equivalents for the below from v2.x in v3.x tools. I haven't been able to find any.

BspGetTickFraction()
BspTickMaxCount

Re: Bsp equivalents

Posted: Sat Oct 02, 2021 1:46 pm
by pbreed
functions have been moved to hal.h.

extern uint16_t HalGetTickFraction(void);

extern uint32_t HalTickMaxCount;

Re: Bsp equivalents

Posted: Mon Oct 04, 2021 7:33 am
by SeeCwriter
Thank you.