From 3076bdffcf55641e05e97d23ab76e3fa285944e9 Mon Sep 17 00:00:00 2001 From: Oscar Bailey Date: Tue, 27 Oct 2020 11:01:58 +0000 Subject: [PATCH] Update CHANGELOG and default BCD --- CHANGELOG.rst | 6 ++++++ lib_xua/api/xua_conf_default.h | 6 +++--- lib_xua/host/xmosdfu/Makefile.Win32 | 3 +++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 73122593..d4a4b5e1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ lib_xua Change Log ================== +1.2.0 +----- + + * ADDED: Makefile.Win32 for xmosdfu on Windows + * FIXED: Bump default BCD device number to v1.2.0 + 1.1.1 ----- diff --git a/lib_xua/api/xua_conf_default.h b/lib_xua/api/xua_conf_default.h index a1fc3514..fa769b20 100644 --- a/lib_xua/api/xua_conf_default.h +++ b/lib_xua/api/xua_conf_default.h @@ -526,21 +526,21 @@ * @brief Device firmware version number in Binary Coded Decimal format: 0xJJMN where JJ: major, M: minor, N: sub-minor version number. */ #ifndef BCD_DEVICE_J -#define BCD_DEVICE_J (0) +#define BCD_DEVICE_J (1) #endif /** * @brief Device firmware version number in Binary Coded Decimal format: 0xJJMN where JJ: major, M: minor, N: sub-minor version number. */ #ifndef BCD_DEVICE_M -#define BCD_DEVICE_M (1) +#define BCD_DEVICE_M (2) #endif /** * @brief Device firmware version number in Binary Coded Decimal format: 0xJJMN where JJ: major, M: minor, N: sub-minor version number. */ #ifndef BCD_DEVICE_N -#define BCD_DEVICE_N (1) +#define BCD_DEVICE_N (0) #endif /** diff --git a/lib_xua/host/xmosdfu/Makefile.Win32 b/lib_xua/host/xmosdfu/Makefile.Win32 index 9ab2fc40..2cf6b661 100644 --- a/lib_xua/host/xmosdfu/Makefile.Win32 +++ b/lib_xua/host/xmosdfu/Makefile.Win32 @@ -1,6 +1,9 @@ # Build tested with Visual Studio 2017 command prompt # # Run: nmake /f Makefile.Win32 +# +# NOTE: To run xmosdfu on Windows, libusbK drivers must be installed on the DFU endpoint +# We recommend using the third-party Zadig tool for this. COMMON_FLAGS = \ /D BECLEAR_HOST=1 \