69 Commits

Author SHA1 Message Date
Andrew Gillham
6ec9441ad6 Update README with supported hardware details. Fixes issue #55. Also add some other similar SUMP projects to the bottom of the README. Fix the Makefile as well since I moved the sketches into examples. The Makefile needs more work to add the Leonardo and Sigrok sketches but that is more of an exercise for the reader. 2023-10-10 10:49:48 -05:00
Andrew Gillham
1a226d516d Add empty LogicAnalyzer.h for arduino-lint. 0.17.0 2023-10-05 22:48:18 -05:00
Andrew Gillham
ed0666863b Rearrange the repository and add a library.properties file to make this installable as a .ZIP library in the Arduino IDE. 2023-10-05 22:32:52 -05:00
Andrew Gillham
739144d57e Fix off by one on the capture buffer due to earlier debugging. I finally realized I was checking if an unsigned int was less than zero. Thanks Szilárd for the correct indexes in the issue comments. 2023-10-03 23:48:07 -05:00
Andrew Gillham
0b2651864e Add a sketch with Sigrok support. Basically returning the capture buffer in the opposite order. 2023-10-03 23:00:05 -05:00
Andrew Gillham
71b7c4790d Move README to README.md and update it. 2021-12-21 13:28:29 -06:00
Andrew Gillham
016eabdc12 Add a LICENSE file. 2021-12-21 12:51:32 -06:00
Andrew Gillham
1cdc52febc Add a LICENSE file. 2021-12-21 12:35:18 -06:00
Andrew Gillham
a426e85f0d Bump the metadata version to 0.15 also. 2021-12-21 12:01:55 -06:00
Andrew Gillham
b919640c7e Add a note about needing to compile the OLS client yourself. 2021-12-21 11:43:55 -06:00
Andrew Gillham
636df223a4 Bump release to 0.15 now that we have re-organized. 2021-12-21 11:36:21 -06:00
Andrew Gillham
57b1f18900 Move the main ATMega328P sketch into a sub-directory and add the Leonardo sketch to a sub-directory from the branch. Helps folks that download the repository via ZIP file and will allow different board support that is not easily done via ifdef checks. 2021-12-21 11:27:31 -06:00
Andrew Gillham
4f7f86f6d4 Convert Makefile to use arduino-cli since that replaces arduino-core and arduino-builder. 2021-12-21 11:11:38 -06:00
gillham
bd1fbe504e Merge pull request #51 from qaxi/master
Wrong delayTime in 500KHz menu
2021-12-20 15:14:22 -06:00
Petr Klíma
cfacce1758 500KMz
500KHz line was mistakenly 1MHz
2019-12-15 19:08:39 +01:00
gillham
11b8b5bbda Merge pull request #27 from dhiltonp/master
Give Leonardo-type Arduinos 2k sample size.
2016-02-02 10:03:21 -08:00
David P Hilton
4233770315 Give Leonardo-type arduinos 2048 storage 2016-02-02 11:14:06 -05:00
Andrew Gillham
1e3f0696af Update for CLI compiling.
Add function declarations for the inline capture functions and add a
note to the README explaining how to compile from the CLI using the
‘arduino-mk’ package.   Known to work on Debian 8, but untested
elsewhere.
2015-12-16 11:47:31 -08:00
Andrew Gillham
5fb67c666d v0.14. Rearrange DEBUG functionality, disable by default.
v0.14. Add ‘DEBUG_MENU’ which can be uncommented to enable the basic
debug menu with the ability to run a capture / dump the data etc.
DEBUG and DEBUG_MENU are commented out by default to save RAM.
2015-12-16 11:15:10 -08:00
Andrew Gillham
9a065516e2 Add additional diagnostic commands.
You can connect via the serial monitor and send ‘?’ to get a list of
commands available.  This allows some diagnostics when the board isn’t
working with the OLS client.
Sending ‘4’ does a 4MHz capture and ‘2’ dumbs the data buffer for
example.  Recommended to use this with the simulated signal via a
timer.  See the bottom of the setup() function and change the ‘#if 0’
to ‘#if 1’ to enable it.
Also, fix a long standing bug that broke 2MHz captures and the
ATmega168. (improper #if defined check)
2015-02-07 12:17:24 -08:00
Andrew Gillham
d0afee13d2 Update README formatting.
Reduce lines to less than 80 columns to avoid wrapping.
2014-06-22 16:04:20 -07:00
Andrew Gillham
23fb253929 Fix sketch size for ATmega168
Automatically skip the inline2MHz sample rate on an ATmega168 based
Arduino.  4MHz will still work fine and the sketch will fit (10kB
instead of 16kB+)
2014-06-22 15:40:05 -07:00
Andrew Gillham
3128dc35f0 Cleanup README
Cleanup older notes from the README.  Move the part about disabling
auto-reset to towards the end under ‘older notes’ and add a comment
about how it shouldn’t be necessary.  Almost move the part about the
device profiles as they are builtin to ols-0.9.7 or newer.
2014-06-22 15:30:55 -07:00
Andrew Gillham
9c83897b9b Correct preprocessor logic to avoid data gap on the Mega.
Fixes issue #14 where I copied the preprocessor logic from a different
Mega related check and didn't fix up the elif.  So samples from 512 -
1023 were always zero on the Mega.
Update to v0.12
2013-09-06 09:54:41 -07:00
Andrew Gillham
2a549be57a Tweak README 2013-08-03 13:25:54 -07:00
Andrew Gillham
2d31a93687 Add notes about 2MHz/4MHz mode and binary size.
Also move a couple more things under #ifdef DEBUG in an attempt to
reduce the code size for ATmega168.
It current doesn't fit in the '168 but maybe after some more tweaks.
2013-08-03 13:23:02 -07:00
Andrew Gillham
d7c1bf52a8 Add 2MHz and 4MHz sample rate support.
Use unrolled loops to sample at 2MHz & 4MHz rates.  Based on some
testing by Bob Davis (http://bobdavis321.blogspot.com)
The maximum with a 16MHz clock is 5.3333MHz (3 cycles per sample) but
sampling at that rate isn't very accurate.  Accuracy is pretty good at
2MHz & 4MHz.
2013-08-03 12:33:23 -07:00
Andrew Gillham
69de405dd5 Release v0.10 with a fix for the Arduino Uno R3.
The only change is an updated ols.profile-agla.cfg that works with the
Arduino Uno R3.
2013-07-22 22:25:24 -07:00
Andrew Gillham
8c7db04e3c Increase portdelay so that Arduino Uno R3 works.
For some reason the Arduino Uno R3 (but not my earlier / original Uno)
needs a longer delay after reset.  I haven't investigated the cause
yet, but increasing device.open.portdelay to > 1700ms seems to fix it.
Bump to 2000 just to be safe in all cases.  This should fix the Uno R3
issues that have been reported a couple of times now.
2013-07-22 22:11:20 -07:00
Andrew Gillham
17d2a1a15f Bump metadata for version 0.09 2013-06-22 19:22:35 -07:00
Andrew Gillham
0a40fdb2ac Update comment to reflect that PORTD seems to work, but needs testing.
I'm still working on PORTD triggers.  I'm not yet satisfied they are
working 100% correctly.
2013-06-22 11:33:29 -07:00
Andrew Gillham
1f7eb0aecd Add missing shift for PORTD trigger. 2013-06-22 11:30:39 -07:00
Andrew Gillham
dc3d85abf7 Revert to PORTB (Arduino pins 8-13) and make PORTD a configuration option.
Triggers are more reliable on PORTB.  I am working on fixing triggers
on PORTD, but I'm setting this back to original behavior (with a
#define USE_PORTD available) so this isn't broken for triggering.
2013-06-22 11:17:06 -07:00
Andrew Gillham
240ebc134c Update to v0.08 and add note about channels changes. 2013-02-08 17:06:23 -08:00
Andrew Gillham
396a3ccfa5 Switch to 6 channels on PORTD.
Switch from PORTB to PORTD so that a full 6 channels can be used
without messing with the LED.  Per suggestion in issue #7.  I was
unable to find any issues with using PORTB.  During initial development
I ran into some noise & stability issues but I believe those were
solved later via allowing the ports to settle prior to beginning
sampling.
This allows for 6 channels, starting with digital pin 2 (next to the
UART TX pin) and ending at digital pin 7.
The debug pin is now digital pin 8.
2013-02-08 17:02:18 -08:00
Andrew Gillham
864ae2c826 Implement RLE mode for 50Hz or lower sample rates. (via hhermsen in issue #9)
Support RLE mode for samples rates of 50Hz or less.  Code from hhermsen
in issue #9.
This is a work in progress.  Hopefully RLE can be added for higher
sample rates in the future.
2013-02-08 14:31:05 -08:00
Andrew Gillham
445dac179c Update copyright year. 2013-02-08 13:16:39 -08:00
Andrew Gillham
0f81002bde Update firmware version to v0.07 in metadata. 2013-02-08 12:43:28 -08:00
Andrew Gillham
fb3aca55a0 Bump to v0.07 2013-02-08 12:42:29 -08:00
Andrew Gillham
851b7e0735 Add firmware version to metadata
Return the firmware version to the Logic Sniffer extended SUMP protocol
metadata request.  Now you can see what version is loaded on your
device.
2013-02-08 12:41:26 -08:00
Andrew Gillham
b1a43e57c7 Update device profile clockspeed.
The Mega also runs as 16MHz so update device.clockspeed to match.
2013-01-28 11:15:16 -08:00
Andrew Gillham
1f418098b2 Update device profile clockspeed & portdelay.
Set clock speed to 16MHz.  Hopefully this value works fine with the
client since the previous 100MHz was not the actual clockspeed anyway.
Also, adjust the device.open.portdelay to 1500ms.  People can test
their own device for the fastest value, but this should be a safer
default for most people and hopefully eliminates som frustration for
first time users.
2013-01-28 11:12:07 -08:00
Andrew Gillham
34aea7435d Update device profiles.
Add the 'device.receive.timeout' values required by the latest
LogicSniffer client application.
2013-01-28 10:58:23 -08:00
Andrew Gillham
f51d0bbb96 Improve pre-trigger sampling on below 500kHz sample rates.
The sample loop was not padded properly in the loop waiting for the
trigger to fire. As a result it was sampling at a much higher rate than
the post trigger sample rate.  I've added some delays and padded it out
a bit, it needs further measurement, but is usable now.
2012-02-27 14:36:17 -08:00
gillham
3a6329775c Merge pull request #3 from scottp/master
Correct long standing bug in the device profiles on github where the data was being reversed by the client due to the reverseOrder setting.  The sketch returns the data in the sampled order, but the client appears to expect it reversed, so the sense of the setting is backwards. Data is in the correct order based on a simple test program, even though the setting is "wrong".  Invert the comment as well.  Also increase the delay on the Mega as it doesn't always respond fast enough. Patches from scottp.
2012-02-27 12:27:45 -08:00
Scott Penrose
3c69ec10a1 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.
2012-02-03 15:57:04 +11:00
Scott Penrose
7173e83e14 ols.profile-aglam.cfg: Increased delay time
On testing a number of Arduino Mega boards, I found the device missing error.
Now it seems to be always working if you set it to 2000.
2012-02-03 15:55:24 +11:00
Andrew Gillham
5ec7aa1b51 Fix ATmega168 comment. 2011-11-04 18:30:31 -07:00
Andrew Gillham
ebbc1fb945 Update to v0.06 supporting Arduino 1.0 only. 2011-11-04 18:22:35 -07:00
Andrew Gillham
bc32e9fde6 Update for Arduino 1.0 support.
Change file extension to .ino Change Serial.print(x, BYTE) to
Serial.write(x)
2011-11-04 18:19:59 -07:00