-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SUMP devices able to provide over 512kB of samples #236
Comments
If you take a look at the SUMP protocol, esp. command 0x81h, you get 16-bits for the read count (= the number of samples times 4 returned to the PC). So: 65536 * 4 = 256k. |
Thank you for pointing out the specific issue. At the heart of my mistake is the fact that in my device I do not implement Referring strictly to the existing implementation, I still do not think On Thu, Sep 22, 2016 at 8:49 PM, Jan Willem Janssen <
|
SUMP devices able to provide over 512kB of samples can't be used at full potential due to an internal software limit set in device.logicsniffer/src/main/java/org/sump/device/logicsniffer/LogicSnifferConfig.java that states "the number of samples to take, must be between 4 and 256*1024".
The limit seems artificial and limits the possible functionality of other SUMP devices.
The text was updated successfully, but these errors were encountered: