Skip to content

Commit

Permalink
clang-format bot reformatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
crsz20 committed Nov 26, 2024
1 parent 80cd67c commit 02f231e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions Examples/MAX32690/Bluetooth/PAL_UART/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,12 @@
#include "board.h"
#include "pal_uart.h"


/**************************************************************************************************
Global Variables
**************************************************************************************************/

static uint8_t rxData[10];


/**************************************************************************************************
Functions
**************************************************************************************************/
Expand Down Expand Up @@ -70,11 +68,7 @@ int main(void)
printf("Starting\n");
MXC_Delay(500000);

const PalUartConfig_t pCfg = {
.rdCback = rd_callback,
.wrCback = wr_callback,
.baud = 115200
};
const PalUartConfig_t pCfg = { .rdCback = rd_callback, .wrCback = wr_callback, .baud = 115200 };

PalUartInit(PAL_UART_ID_TERMINAL, &pCfg);
PalUartReadData(PAL_UART_ID_TERMINAL, rxData, 1);
Expand Down

0 comments on commit 02f231e

Please sign in to comment.