Update CHANGELOG and default BCD

This commit is contained in:
Oscar Bailey
2020-10-27 11:01:58 +00:00
parent 32fd9c652b
commit 3076bdffcf
3 changed files with 12 additions and 3 deletions

View File

@@ -1,6 +1,12 @@
lib_xua Change Log 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 1.1.1
----- -----

View File

@@ -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. * @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 #ifndef BCD_DEVICE_J
#define BCD_DEVICE_J (0) #define BCD_DEVICE_J (1)
#endif #endif
/** /**
* @brief Device firmware version number in Binary Coded Decimal format: 0xJJMN where JJ: major, M: minor, N: sub-minor version number. * @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 #ifndef BCD_DEVICE_M
#define BCD_DEVICE_M (1) #define BCD_DEVICE_M (2)
#endif #endif
/** /**
* @brief Device firmware version number in Binary Coded Decimal format: 0xJJMN where JJ: major, M: minor, N: sub-minor version number. * @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 #ifndef BCD_DEVICE_N
#define BCD_DEVICE_N (1) #define BCD_DEVICE_N (0)
#endif #endif
/** /**

View File

@@ -1,6 +1,9 @@
# Build tested with Visual Studio 2017 command prompt # Build tested with Visual Studio 2017 command prompt
# #
# Run: nmake /f Makefile.Win32 # 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 = \ COMMON_FLAGS = \
/D BECLEAR_HOST=1 \ /D BECLEAR_HOST=1 \