summaryrefslogtreecommitdiff
path: root/examples/device
diff options
context:
space:
mode:
authorPhozer <[email protected]>2026-05-26 16:47:12 +0200
committerGitHub <[email protected]>2026-05-26 16:47:12 +0200
commit4ba1c39a225ee4ee96e8449f70bf0ba06be62753 (patch)
tree2aa73296cb42a20e6009b692ccd989c5093e789f /examples/device
parent7b9f6eabd8623c2bbe188c8d53072b16a087cdda (diff)
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