Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4951dae + 153c109 commit f079158Copy full SHA for f079158
driver_lib/driver/hw_timer.c
@@ -28,7 +28,7 @@
28
((t) ? \
29
(((t) > 0x35A) ? \
30
(((t) >> 2) * ((APB_CLK_FREQ >> 4) / 250000) + ((t)&0x3) * ((APB_CLK_FREQ >> 4) / 1000000)) : \
31
- (((t) *(APB_CLK_FREQ>>4)) / 1000000)) : \
+ ((t) *((APB_CLK_FREQ>>4) / 1000000))) : \
32
0)
33
34
#define FRC1_ENABLE_TIMER BIT7
0 commit comments