-
Notifications
You must be signed in to change notification settings - Fork 112
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
Interference on DAISY_SS (D3) #1
Comments
Hi mikeanthonywild. Do you have anything attached to the DAISY_SS pin? What board are you using, the 32bit or the 8bit. If you are using the 8bit Board:The 8bit Board does not touch the DAISY_SS pin in the Library firmware at all, so it is left floating, and you are likely seeing cross-talk on that pin. Try adding this in your setup() and reprogram the board. pinMode(DAISY_SS, OUTPUT); If you are using the 32bit Board:Well, that's pretty messed up, because the 32bit Board does make the DAISY_SS pin OUTPUT and sets it HIGH so it really should be stable. |
Sorry I should have specified, I'm using the 32-bit board. The only thing I have connected to DAISY_SS is a logic analyser. I should add that the trace above, I had set DAISY_SS low as a sanity check. The problem still persists with the default code, except the DC offset is high. As an aside, I noticed this inconsistency while looking through the code:
I can't seem to find where |
Well, that is certainly a bug, Thanks for pointing it out. I will be pulling my oscope out soon, and take a look at the behavior of the DAISY_SS to see if I can replicate your results. |
I just scoped a couple of boards here in the OpenBCI lab. |
I've been trying to alter the firmware to use the daisychain header to transfer samples to another device via SPI. I've noticed that DAISY_SS picks up a lot of interference from the other SPI lines. Attached is a scope trace of the SPI lines when running unmodified firmware while capturing data from the ADS1299 - note channel 3 (DAISY_SS) is picking up significant interference from the other SPI lines.
The text was updated successfully, but these errors were encountered: