From 18f97fef7e35937c017f2b2ad2300a920256f66b Mon Sep 17 00:00:00 2001 From: hathach Date: Thu, 12 Apr 2018 12:55:53 +0700 Subject: rename TUSB_OS_NONE, TUSB_OS_FREERTOS to OPT_OS_NONE, OPT_OS_FREERTOS --- tinyusb/tusb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tinyusb/tusb.h') diff --git a/tinyusb/tusb.h b/tinyusb/tusb.h index 9a1fd0c4c..f469ca33e 100644 --- a/tinyusb/tusb.h +++ b/tinyusb/tusb.h @@ -102,9 +102,9 @@ */ tusb_error_t tusb_init(void); -#if CFG_TUSB_OS == TUSB_OS_NONE +#if CFG_TUSB_OS == OPT_OS_NONE /** \brief Run all tinyusb's internal tasks (e.g host task, device task). - * \note This function is only required when using no RTOS (\ref CFG_TUSB_OS == TUSB_OS_NONE). All the stack functions + * \note This function is only required when using no RTOS (\ref CFG_TUSB_OS == OPT_OS_NONE). All the stack functions * & callback are invoked within this function, so it should be called periodically within the mainloop * @code -- cgit v1.3.1