Skip to content

Commit

Permalink
clang-format bot reformatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
EricB-ADI committed Nov 5, 2024
1 parent 4fbb36c commit be54351
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
5 changes: 2 additions & 3 deletions Examples/MAX32655/Bluetooth/BLE_FreeRTOS/freertos_tickless.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,10 @@ int freertos_permit_tickless(void)

uint32_t dummy;
bool_t ret = PalBbGetTimestamp(&dummy);
if(!ret)
{
if (!ret) {
return E_BUSY;
}

return E_NO_ERROR;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,13 @@ int freertos_permit_tickless(void)
if (MXC_UART_GetActive(MXC_UART_GET_UART(CONSOLE_UART)) != E_NO_ERROR) {
return E_BUSY;
}

uint32_t dummy;
bool_t ret = PalBbGetTimestamp(&dummy);
if(!ret)
{
if (!ret) {
return E_BUSY;
}

return E_NO_ERROR;
}

Expand Down
3 changes: 1 addition & 2 deletions Examples/MAX32665/Bluetooth/BLE_FreeRTOS/freertos_tickless.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ int freertos_permit_tickless(void)

uint32_t dummy;
bool_t ret = PalBbGetTimestamp(&dummy);
if(!ret)
{
if (!ret) {
return E_BUSY;
}

Expand Down
5 changes: 2 additions & 3 deletions Examples/MAX32690/Bluetooth/BLE_FreeRTOS/freertos_tickless.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,10 @@ int freertos_permit_tickless(void)

uint32_t dummy;
bool_t ret = PalBbGetTimestamp(&dummy);
if(!ret)
{
if (!ret) {
return E_BUSY;
}

return E_NO_ERROR;
}

Expand Down

0 comments on commit be54351

Please sign in to comment.