Skip to content

Commit

Permalink
Update GitHub Actions workflow to latest version with Node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
lyusupov committed Jan 31, 2024
1 parent 4e91c88 commit c1bc040
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

#- name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
Expand Down
5 changes: 4 additions & 1 deletion software/firmware/source/SoftRF/src/platform/ESP32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4691,6 +4691,9 @@ static void ESP32CX_USB_setup()
/* native CDC (HWCDC) */
USBSerial.setRxBufferSize(USB_RX_FIFO_SIZE);
USBSerial.setTxBufferSize(USB_TX_FIFO_SIZE);
#if !ARDUINO_USB_CDC_ON_BOOT
USBSerial.begin(SERIAL_OUT_BR);
#endif /* ARDUINO_USB_CDC_ON_BOOT */
}

static void ESP32CX_USB_loop()
Expand All @@ -4700,7 +4703,7 @@ static void ESP32CX_USB_loop()

static void ESP32CX_USB_fini()
{

/* TBD */
}

static int ESP32CX_USB_available()
Expand Down

0 comments on commit c1bc040

Please sign in to comment.