summaryrefslogtreecommitdiff
path: root/examples/host/device_info/src
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2025-07-02 18:15:37 +0700
committerGitHub <[email protected]>2025-07-02 18:15:37 +0700
commit963971c6aa14411f0cc6f0c4f727d199c738e2a5 (patch)
tree45124e4246dd415bcab22119fa6b21f9ff363be3 /examples/host/device_info/src
parent0d6cb38163692fa8795d75b8eda9454c579bea4a (diff)
parenta52e5ce99aa4fba305e5b8639360d5b3990d7475 (diff)
Merge pull request #3157 from hathach/update-buildsystem
Update buildsystem
Diffstat (limited to 'examples/host/device_info/src')
-rw-r--r--examples/host/device_info/src/main.c8
-rw-r--r--examples/host/device_info/src/tusb_config.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/host/device_info/src/main.c b/examples/host/device_info/src/main.c
index e924a137b..7189972d6 100644
--- a/examples/host/device_info/src/main.c
+++ b/examples/host/device_info/src/main.c
@@ -268,7 +268,7 @@ void led_blinking_task(void* param) {
#define BLINKY_STACK_SIZE configMINIMAL_STACK_SIZE
-#if TUSB_MCU_VENDOR_ESPRESSIF
+#ifdef ESP_PLATFORM
#define USB_STACK_SIZE 4096
#else
// Increase stack size when debug log is enabled
@@ -285,7 +285,7 @@ StackType_t usb_stack[USB_STACK_SIZE];
StaticTask_t usb_taskdef;
#endif
-#if TUSB_MCU_VENDOR_ESPRESSIF
+#ifdef ESP_PLATFORM
void app_main(void) {
main();
}
@@ -308,8 +308,8 @@ void init_freertos_task(void) {
xTaskCreate(usb_host_task, "usbh", USB_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL);
#endif
- // skip starting scheduler (and return) for ESP32-S2 or ESP32-S3
-#if !TUSB_MCU_VENDOR_ESPRESSIF
+ // only start scheduler for non-espressif mcu
+#ifndef ESP_PLATFORM
vTaskStartScheduler();
#endif
}
diff --git a/examples/host/device_info/src/tusb_config.h b/examples/host/device_info/src/tusb_config.h
index e12970c12..e4ca2528e 100644
--- a/examples/host/device_info/src/tusb_config.h
+++ b/examples/host/device_info/src/tusb_config.h
@@ -40,7 +40,7 @@
#endif
// Espressif IDF requires "freertos/" prefix in include path
-#if TUSB_MCU_VENDOR_ESPRESSIF
+#ifdef ESP_PLATFORM
#define CFG_TUSB_OS_INC_PATH freertos/
#endif