summaryrefslogtreecommitdiff
path: root/examples/device
diff options
context:
space:
mode:
authorZixun LI <[email protected]>2026-05-26 17:39:59 +0200
committerGitHub <[email protected]>2026-05-26 17:39:59 +0200
commit6f59b79a6cad1ade33f482e4db5246d65642699b (patch)
tree5fd275e15e6a62f5bf85c5f20eca292706221f03 /examples/device
parent0c8499904681e565ea51192ee03b4dfa2073964d (diff)
parent44a897bff086d42a0e6312e88ae335cca71d5a6f (diff)
Merge pull request #3651 from Phozer/cdc_msc_freertos_example-Typo_Fix
Fix typo in CDC stack size constant
Diffstat (limited to 'examples/device')
-rw-r--r--examples/device/cdc_msc_freertos/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/device/cdc_msc_freertos/src/main.c b/examples/device/cdc_msc_freertos/src/main.c
index f2f71d089..4a920c90b 100644
--- a/examples/device/cdc_msc_freertos/src/main.c
+++ b/examples/device/cdc_msc_freertos/src/main.c
@@ -88,7 +88,7 @@ int main(void) {
#else
xTaskCreate(led_blinking_task, "blinky", BLINKY_STACK_SIZE, NULL, 1, NULL);
xTaskCreate(usb_device_task, "usbd", USBD_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL);
- xTaskCreate(cdc_task, "cdc", CDC_STACK_SZIE, NULL, configMAX_PRIORITIES - 2, NULL);
+ xTaskCreate(cdc_task, "cdc", CDC_STACK_SIZE, NULL, configMAX_PRIORITIES - 2, NULL);
#endif
#ifndef ESP_PLATFORM