From bb2f93d4270cfffc16b180a870f30ac789fdae30 Mon Sep 17 00:00:00 2001 From: hathach Date: Fri, 5 Feb 2021 20:41:41 +0700 Subject: prepare for release --- src/device/usbd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/device/usbd.h b/src/device/usbd.h index 360567743..b5f7dceba 100644 --- a/src/device/usbd.h +++ b/src/device/usbd.h @@ -57,6 +57,7 @@ extern void dcd_int_handler(uint8_t rhport); tusb_speed_t tud_speed_get(void); // Check if device is connected (may not mounted/configured yet) +// True if just got out of Bus Reset and received the very first data from host bool tud_connected(void); // Check if device is connected and configured -- cgit v1.3.1 From 465ea7a66e35725d1b5ec7443d86afe27762b586 Mon Sep 17 00:00:00 2001 From: hathach Date: Fri, 5 Feb 2021 22:37:22 +0700 Subject: increase TUSB_VERSION_ to 0.8.0 --- src/tusb_option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tusb_option.h b/src/tusb_option.h index a89c6db9d..5d5e50412 100644 --- a/src/tusb_option.h +++ b/src/tusb_option.h @@ -28,7 +28,7 @@ #define _TUSB_OPTION_H_ #define TUSB_VERSION_MAJOR 0 -#define TUSB_VERSION_MINOR 7 +#define TUSB_VERSION_MINOR 8 #define TUSB_VERSION_REVISION 0 #define TUSB_VERSION_STRING TU_STRING(TUSB_VERSION_MAJOR) "." TU_STRING(TUSB_VERSION_MINOR) "." TU_STRING(TUSB_VERSION_REVISION) -- cgit v1.3.1