Skip to content

Commit 645b976

Browse files
author
Richard Unger
committed
remove debug statements
1 parent d0edce0 commit 645b976

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/drivers/hardware_specific/stm32_mcu.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ HardwareTimer* _initPinPWMLow(uint32_t PWM_freq, PinMap* timer)
8787
}
8888
HardwareTimer *HT = (HardwareTimer *)(HardwareTimer_Handle[index]->__this);
8989
uint32_t channel = STM_PIN_CHANNEL(timer->function);
90-
SIMPLEFOC_DEBUG("Configuring low timer ", (int)getTimerNumber(get_timer_index(HardwareTimer_Handle[index]->handle.Instance)));
91-
SIMPLEFOC_DEBUG("Configuring low channel ", (int)channel);
90+
//SIMPLEFOC_DEBUG("Configuring low timer ", (int)getTimerNumber(get_timer_index(HardwareTimer_Handle[index]->handle.Instance)));
91+
//SIMPLEFOC_DEBUG("Configuring low channel ", (int)channel);
9292

9393

9494
HT->pause();
@@ -178,7 +178,7 @@ void _alignTimersNew() {
178178
}
179179

180180
for (int i=0; i<numTimers; i++) {
181-
SIMPLEFOC_DEBUG("Resuming timer ", getTimerNumber(get_timer_index(timers[i]->getHandle()->Instance)));
181+
//SIMPLEFOC_DEBUG("Resuming timer ", getTimerNumber(get_timer_index(timers[i]->getHandle()->Instance)));
182182
timers[i]->resume();
183183
}
184184

0 commit comments

Comments
 (0)