Skip to content

Commit 54eef4a

Browse files
committed
Merge commit '8bf7fef40e31bf15c7223475d0ed8e9a787e7ada'
2 parents e113511 + 8bf7fef commit 54eef4a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2020
- name: Check out repo
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
submodules: 'recursive'
2424
token: ${{ secrets.REPO_READ_TOKEN }}
@@ -53,7 +53,7 @@ jobs:
5353
Get-ChildItem '.' -Filter speedgoat-deps-*.zip | Expand-Archive -DestinationPath 'toolbox\dependencies\sg' -Force
5454
5555
- name: Cache MATLAB build files
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
key: matlab-buildtool
5959
path: |
@@ -71,7 +71,7 @@ jobs:
7171

7272
# Create new release
7373
- name: Create a new release
74-
uses: softprops/action-gh-release@v1
74+
uses: softprops/action-gh-release@v2
7575
with:
7676
files: releases/bossdevice-api-installer.mltbx
7777
fail_on_unmatched_files: true

buildUtilities/releaseTask.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"Identifier","fd9733c5-082a-4325-a5e5-e7490cdb8fb1", ...
5353
"EarliestVersion","2.0.0", ...
5454
"LatestVersion","2.100.0", ...
55-
"DownloadURL","https://github.com/mathworks/advanced-logger/releases");
55+
"DownloadURL","https://www.mathworks.com/matlabcentral/mlc-downloads/downloads/fd9733c5-082a-4325-a5e5-e7490cdb8fb1/c723a32c-f05c-4797-b3ef-c1e8e517f2a8/packages/mltbx");
5656

5757
% Required Additional Software
5858
% TODO: Automate download and installation of bossdevice firmware. DownloadURL must point to a ZIP file (MLDATX firmware fiel) in the downloads section of sync2brain

toolbox/src/bossdevice.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -573,10 +573,10 @@ function restoreInstrument(obj)
573573
function bufObj = createAsyncBuffer(obj, signalName, bufferLen, options)
574574
arguments
575575
obj bossdevice
576-
signalName {mustBeTextScalar}
577-
bufferLen (1,1) {mustBePositive}
578-
options.ArrayIndex {mustBeVector,mustBeInteger} = 1;
579-
options.SignalProps {mustBeText} = {};
576+
signalName {mustBeTextScalar} % Signal to log in buffer
577+
bufferLen (1,1) {mustBePositive} % Buffer length in seconds
578+
options.ArrayIndex {mustBeVector,mustBeInteger} = 1; % If signal is multidimensional only buffers the indicated element(s)
579+
options.SignalProps {mustBeText} = {}; % Additional signal properties like bus element name or decimation
580580
end
581581

582582
% Initializie streamingAsyncBuffer object

0 commit comments

Comments
 (0)