aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2022-10-31 15:26:16 +0000
committerMike Leach <mike.leach@linaro.org>2022-10-31 23:07:14 +0000
commit691efce6ab357a35d16eb719498ca9aec72885d5 (patch)
tree9097175a6a5b8b7e37af9a96269ac0b61a0189cd
parent34a698f0c7144bc368471aab84295ec8f7374d61 (diff)
opencsd: Update version info and README for 1.3.3v1.3.3
Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md13
-rw-r--r--decoder/docs/build_libs.md8
-rw-r--r--decoder/docs/doxygen_config.dox2
-rw-r--r--decoder/include/opencsd/ocsd_if_version.h4
4 files changed, 22 insertions, 5 deletions
diff --git a/README.md b/README.md
index c0b402c0eb89..85fa4d4e46bf 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Releases will appear on the master branch in the git repository with an appropri
CoreSight Trace Component Support.
----------------------------------
-_Current Version 1.3.2_
+_Current Version 1.3.3_
### Current support:
@@ -276,6 +276,17 @@ Version and Modification Information
- _Version 1.3.2_:
- __Bugfix__: ETM4x / ETE - 64 bit timestamp value - MS bit incorrectly masked to 1b0 during extraction from packet.
+- _Version 1.3.3_:
+ - __Update__: Add build directory for VS2022 build.
+ - __Update__: Add test program for Coresight Frame Demux code
+ - __Bugfix__: PTM: Fix incorrect extraction of Waypoint Address packet (github issue #48)
+ - __Bugfix__: Frame Demux: Fix HSYNC, FSYNC and 4xFSYNC handling that was causing out-of-bounds reads
+ on invalid data input. (issues #49, #50 and #51). Fixed error handling for incorrect
+ number of FSYNC packets in 4xFSYNC frame reset code that was not triggering an error
+ and allowing fun with mis-aligned input data.
+ - __Bugfix__: Fix silent failure if incorrect config flags set when setting up frame demux modes.
+
+
Licence Information
===================
diff --git a/decoder/docs/build_libs.md b/decoder/docs/build_libs.md
index dc7d85da9401..e3435a2a941c 100644
--- a/decoder/docs/build_libs.md
+++ b/decoder/docs/build_libs.md
@@ -18,7 +18,7 @@ Building the Library
--------------------
The library and test programs are built from the library `./build/<platform>` directory, where
-<platform> is either 'linux' or 'win-vs2015'
+<platform> is either 'linux' or 'win-vs2015' / 'win-vs2022'
See [`./docs/test_progs.md`](@ref test_progs) for further information on use of the test
programs.
@@ -86,6 +86,12 @@ The test programs are built to used the .so versions of the libraries.
The test program build for `trc_pkt_lister` also builds an auxiliary library used by this program for test purposes only.
This is the `libsnapshot_parser.a` library, delivered to the `./tests/lib/<tgt_dir>` directories.
+**Note on Linux Build Directory Names**
+
+Due to tool limitations, the makefiles will not operate correctly if the path to the opencsd directories contains spaces.
+
+e.g. checking out the project into a directory such as ` /home/name/my opencsd/` will result in build failures.
+
__Installing on Linux__
The libraries can be installed on linux using the `make install` command. This will usually require root privileges. Installation will be the version in the `./lib/<tgt_dir>` directory, according to options chosen.
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index a5da45de8423..d8e80cd6c49f 100644
--- a/decoder/docs/doxygen_config.dox
+++ b/decoder/docs/doxygen_config.dox
@@ -38,7 +38,7 @@ PROJECT_NAME = "OpenCSD - CoreSight Trace Decode Library"
# could be handy for archiving the generated documentation or if some version
# control system is used.
-PROJECT_NUMBER = 1.3.2
+PROJECT_NUMBER = 1.3.3
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
diff --git a/decoder/include/opencsd/ocsd_if_version.h b/decoder/include/opencsd/ocsd_if_version.h
index 9e7ecf12efd5..355204c8bfe5 100644
--- a/decoder/include/opencsd/ocsd_if_version.h
+++ b/decoder/include/opencsd/ocsd_if_version.h
@@ -44,7 +44,7 @@
@{*/
#define OCSD_VER_MAJOR 0x1 /**< Library Major Version */
#define OCSD_VER_MINOR 0x3 /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x2 /**< Library Patch Version */
+#define OCSD_VER_PATCH 0x3 /**< Library Patch Version */
/** Library version number - MMMMnnpp format.
MMMM = major version,
@@ -53,7 +53,7 @@
*/
#define OCSD_VER_NUM ((OCSD_VER_MAJOR << 16) | (OCSD_VER_MINOR << 8) | OCSD_VER_PATCH)
-#define OCSD_VER_STRING "1.3.2" /**< Library Version string */
+#define OCSD_VER_STRING "1.3.3" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/