From 7173e83e147a3c6ef7bb01932a07f0156baa3fa3 Mon Sep 17 00:00:00 2001 From: Scott Penrose Date: Fri, 3 Feb 2012 15:55:24 +1100 Subject: [PATCH 1/2] ols.profile-aglam.cfg: Increased delay time MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On testing a number of Arduino Mega boards, I found the device missing error. Now it seems to be alwåays working if you set it to 2000. --- ols.profile-aglam.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ols.profile-aglam.cfg b/ols.profile-aglam.cfg index 70f798b..dd9ec79 100644 --- a/ols.profile-aglam.cfg +++ b/ols.profile-aglam.cfg @@ -39,7 +39,7 @@ device.capturesize.bound = false device.channel.numberingschemes = DEFAULT # Is a delay after opening the port and device detection needed? (0 = no delay, >0 = delay in milliseconds) -device.open.portdelay = 1000 +device.open.portdelay = 2000 # Does the device need a high or low DTR-line to operate correctly? (high = true, low = false) device.open.portdtr = true # Which metadata keys correspond to this device profile? Value is a comma-separated list of (double quoted) names... From 3c69ec10a106d80fbab890a725a8d440caa6cc35 Mon Sep 17 00:00:00 2001 From: Scott Penrose Date: Fri, 3 Feb 2012 15:57:04 +1100 Subject: [PATCH 2/2] ols.profile-*: Reverse IO order received in config Fixed reverseOrder and comments As per this post: http://dangerousprototypes.com/forum/viewtopic.php?f=57&t=2432 The comment talking about device.samples.reverseOrder is reversed. I have fixed the order and the comment and tested. --- ols.profile-agla.cfg | 4 ++-- ols.profile-aglam.cfg | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ols.profile-agla.cfg b/ols.profile-agla.cfg index 5b56326..68776d0 100644 --- a/ols.profile-agla.cfg +++ b/ols.profile-agla.cfg @@ -45,7 +45,7 @@ device.open.portdtr = true # Which metadata keys correspond to this device profile? Value is a comma-separated list of (double quoted) names... device.metadata.keys = "AGLAv0" -# In which order are samples sent back from the device? true = last sample first, false = first sample first -device.samples.reverseOrder = false +# In which order are samples sent back from the device? false = last sample first, true = first sample first +device.samples.reverseOrder = true ###EOF### diff --git a/ols.profile-aglam.cfg b/ols.profile-aglam.cfg index dd9ec79..75e266b 100644 --- a/ols.profile-aglam.cfg +++ b/ols.profile-aglam.cfg @@ -45,7 +45,7 @@ device.open.portdtr = true # Which metadata keys correspond to this device profile? Value is a comma-separated list of (double quoted) names... device.metadata.keys = "AGLAMv0" -# In which order are samples sent back from the device? true = last sample first, false = first sample first -device.samples.reverseOrder = false +# In which order are samples sent back from the device? false = last sample first, true = first sample first +device.samples.reverseOrder = true ###EOF###