Skip to content

Commit

Permalink
remove undefined sioStartOperation call
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoussin committed Jan 20, 2024
1 parent 8c46b90 commit dc3338e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion testhal/RP/RP2040/RT-RP2040-PICO-ADC/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ int main(void) {
* Activates the UART0 SIO driver using the default configuration.
*/
sioStart(&SIOD0, NULL);
sioStartOperation(&SIOD0, NULL);

/*
* Setting up GPIOs.
Expand Down
1 change: 0 additions & 1 deletion testhal/RP/RP2040/RT-RP2040-PICO-I2C-24AA01/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ int main(void) {
* Activates the UART0 SIO driver using the default configuration.
*/
sioStart(&SIOD0, NULL);
sioStartOperation(&SIOD0, NULL);

/* LED GPIO */
palSetLineMode(LED_GREEN_PIN, PAL_MODE_OUTPUT_PUSHPULL | PAL_RP_PAD_DRIVE12);
Expand Down
1 change: 0 additions & 1 deletion testhal/SAMD21A/EFL-MFS/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ int main(void)

/* Start SIO */
sioStart(&SIOD3, &siocfg);
sioStartOperation(&SIOD3, NULL);

/* Starting EFL driver.*/
eflStart(&EFLD1, NULL);
Expand Down
1 change: 0 additions & 1 deletion testhal/SAMD21A/SIO/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ int main(void)
palSetPadMode(GPIOA, 10, PAL_MODE_ALTERNATE(PAL_SAM_FUNC_D));
palSetPadMode(GPIOA, 11, PAL_MODE_ALTERNATE(PAL_SAM_FUNC_D));
sioStart(&SIOD3, &siocfg);
sioStartOperation(&SIOD3, NULL);

/*
* Shell manager initialization.
Expand Down

0 comments on commit dc3338e

Please sign in to comment.