From 4233807062dc7ebe0f3d273dc0a9f82e75c48580 Mon Sep 17 00:00:00 2001 From: Rob Campbell Date: Mon, 20 May 2024 13:45:10 +0100 Subject: [PATCH] remove orphan setting --- CHANGELOG.md | 7 ++++++- zapit/+zapit/+settings/default_settings.m | 3 --- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 928c20a..76b54ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,10 +24,15 @@ NOTE: the version number of the software is taken from the last version number i ## Version History +2024/05/20 v1.0.3 + * Out of bounds stimulus index causes an error. In v1.0.2 it would just carry on + gracefully, which is unwise. Thanks to Peter V for pointing that out. + * Remove setting "experiment.maxStimPointsPerCondition" that was not being used by anything. + 2024/05/20 v1.0.2 * Minor: Produces a CLI warning message if sendSamples is called with a non-existent - condition number. + condition number. This helps particularly for diagnosing issues over TCP/IP. * BUGFIX: NI DAQ no longer requires DAQ IDs (names) to start with a "D". * The stimulus locations selected by the dropdown menu for interactive zapping are now highlighted. diff --git a/zapit/+zapit/+settings/default_settings.m b/zapit/+zapit/+settings/default_settings.m index 7c98330..b5bfd0b 100644 --- a/zapit/+zapit/+settings/default_settings.m +++ b/zapit/+zapit/+settings/default_settings.m @@ -124,9 +124,6 @@ settings.experiment.offRampDownDuration_ms = 250; setTests.experiment.offRampDownDuration_ms = {@check_isnumeric, @check_isscalar}; - settings.experiment.maxStimPointsPerCondition = 2; - setTests.experiment.maxStimPointsPerCondition = {@check_isnumeric, @check_isscalar}; - % The following settings should provide minimum blanking time for Saturn 5 scanners % ThorLabs scanners are slower and will need larger numbers. settings.experiment.blankingTime_ms = 0.3;