Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
EricB-ADI committed Nov 5, 2024
1 parent 5f6bedf commit 2fe25af
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
3 changes: 1 addition & 2 deletions Examples/MAX32655/Bluetooth/BLE_FreeRTOS/freertos_tickless.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ int freertos_permit_tickless(void)
return E_BUSY;
}

if(PalBbIsEnabled())
{
if (PalBbIsEnabled()) {
return E_BUSY;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ int freertos_permit_tickless(void)
return E_BUSY;
}

if(PalBbIsEnabled())
{
if (PalBbIsEnabled()) {
return E_BUSY;
}

Expand Down
8 changes: 4 additions & 4 deletions Examples/MAX32665/Bluetooth/BLE_FreeRTOS/freertos_tickless.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ int freertos_permit_tickless(void)
return E_BUSY;
}

if(PalBbIsEnabled())
{
return E_BUSY;
}
// if(PalBbIsEnabled())
// {
// return E_BUSY;
// }


return E_NO_ERROR;
Expand Down
3 changes: 1 addition & 2 deletions Examples/MAX32690/Bluetooth/BLE_FreeRTOS/freertos_tickless.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ int freertos_permit_tickless(void)
return E_BUSY;
}

if(PalBbIsEnabled())
{
if (PalBbIsEnabled()) {
return E_BUSY;
}

Expand Down

0 comments on commit 2fe25af

Please sign in to comment.