Skip to content

Commit

Permalink
Bump lib_i2c and xmosdoc versions + fix typo in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuchita Khare committed Nov 8, 2024
1 parent 02f3423 commit 7b6b2d2
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lib_board_support change log

* Changes to dependencies:

- lib_i2c: 6.3.0 -> 6.3.1
- lib_i2c: 6.3.0 -> 6.4.0

- lib_sw_pll: 2.3.0 -> 2.3.1

Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pipeline {
)
string(
name: 'XMOSDOC_VERSION',
defaultValue: 'v6.1.2',
defaultValue: 'v6.1.3',
description: 'The xmosdoc version'
)
string(
Expand Down
28 changes: 14 additions & 14 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ lib_board_support: XMOS board support
#####################################

:vendor: XMOS
:version: 1.0.1
:version: 1.1.1
:scope: General Use
:description: Support library for XMOS development kits
:category: General Purpose
Expand All @@ -23,46 +23,46 @@ evaluation and development kits.
Features
********

* Support for the following boards:
* ``XK_EVK_XU316``
* ``XK_AUDIO_316_MC``
* ``XK_AUDIO_216_MC``
* Simple examples to demonstrating usage from both `XC` and `C`.
* Support for the following boards:
* ``XK_EVK_XU316``
* ``XK_AUDIO_316_MC``
* ``XK_AUDIO_216_MC``
* Simple examples to demonstrating usage from both `XC` and `C`.

************
Known issues
************

* None
* None

****************
Development repo
****************

* `lib_board_support <https://www.github.com/xmos/lib_board_support>`_
* `lib_board_support <https://www.github.com/xmos/lib_board_support>`_

**************
Required tools
**************

* XMOS XTC Tools: 15.3.0
* XMOS XTC Tools: 15.3.0

*********************************
Required libraries (dependencies)
*********************************

* `lib_i2c <https://www.xmos.com/file/lib_i2c>`_
* `lib_sw_pll <https://www.xmos.com/file/lib_sw_pll>`_
* `lib_xassert <https://www.xmos.com/file/lib_xassert>`_
* `lib_i2c <https://www.xmos.com/file/lib_i2c>`_
* `lib_sw_pll <https://www.xmos.com/file/lib_sw_pll>`_
* `lib_xassert <https://www.xmos.com/file/lib_xassert>`_

*************************
Related application notes
*************************

The following application notes use this library:

* `AN02003: SPDIF/ADAT/I²S Receive to I²S Slave Bridge with ASRC <https://www.xmos.com/file/an02003>`_
* `AN02016: Integrating Audio Weaver (AWE) Core into USB Audio <https://www.xmos.com/file/an02016>`_
* `AN02003: SPDIF/ADAT/I²S Receive to I²S Slave Bridge with ASRC <https://www.xmos.com/file/an02003>`_
* `AN02016: Integrating Audio Weaver (AWE) Core into USB Audio <https://www.xmos.com/file/an02016>`_

*******
Support
Expand Down
2 changes: 1 addition & 1 deletion doc/rst/lib_board_support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ The application binaries can be built using ``xmake``::

To run the application use the following command::

xrun --io bin/<app_name>/<app_name>.xe
xrun --io bin/<app_name>.xe

For example::

Expand Down
2 changes: 1 addition & 1 deletion lib_board_support/lib_build_info.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ set(LIB_NAME lib_board_support)
set(LIB_VERSION 1.1.1)
set(LIB_INCLUDES api/boards api/drivers)
set(LIB_COMPILER_FLAGS -Os -g)
set(LIB_DEPENDENT_MODULES "lib_i2c(6.3.1)"
set(LIB_DEPENDENT_MODULES "lib_i2c(6.4.0)"
"lib_sw_pll(2.3.1)"
"lib_xassert(4.3.1)")

Expand Down
2 changes: 1 addition & 1 deletion lib_board_support/module_build_info
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION = 1.1.1

DEPENDENT_MODULES = lib_i2c(>=6.3.1)
DEPENDENT_MODULES = lib_i2c(>=6.4.0)
lib_sw_pll(>=2.3.1)
lib_xassert(>=4.3.1)

Expand Down

0 comments on commit 7b6b2d2

Please sign in to comment.