mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 14:25:20 +03:00
No space in sizeof() as per Betaflight coding standard
This commit is contained in:
parent
14bd75b446
commit
e8bf78178b
18 changed files with 65 additions and 65 deletions
|
@ -781,7 +781,7 @@ _TIM_IRQ_HANDLER(TIM1_TRG_COM_TIM17_IRQHandler, 17);
|
|||
|
||||
void timerInit(void)
|
||||
{
|
||||
memset(timerConfig, 0, sizeof (timerConfig));
|
||||
memset(timerConfig, 0, sizeof(timerConfig));
|
||||
|
||||
#if defined(PARTIAL_REMAP_TIM3)
|
||||
GPIO_PinRemapConfig(GPIO_PartialRemap_TIM3, ENABLE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue