Skip to content

Commit 093c7b9

Browse files
committed
Fix code formatting
1 parent 8c785e5 commit 093c7b9

File tree

1 file changed

+2
-4
lines changed
  • hal/targets/cmsis/TARGET_STM/TARGET_STM32F1/TARGET_BLUEPILL_F103C8

1 file changed

+2
-4
lines changed

hal/targets/cmsis/TARGET_STM/TARGET_STM32F1/TARGET_BLUEPILL_F103C8/hal_tick.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,16 +138,14 @@ HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) {
138138
return HAL_OK;
139139
}
140140

141-
void HAL_SuspendTick(void)
142-
{
141+
void HAL_SuspendTick(void) {
143142
TimMasterHandle.Instance = TIM_MST;
144143

145144
// Disable HAL tick and us_ticker update interrupts (used for 32 bit counter)
146145
__HAL_TIM_DISABLE_IT(&TimMasterHandle, (TIM_IT_CC2 | TIM_IT_UPDATE));
147146
}
148147

149-
void HAL_ResumeTick(void)
150-
{
148+
void HAL_ResumeTick(void) {
151149
TimMasterHandle.Instance = TIM_MST;
152150

153151
// Enable HAL tick and us_ticker update interrupts (used for 32 bit counter)

0 commit comments

Comments
 (0)