-
Notifications
You must be signed in to change notification settings - Fork 32
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
Unexpected Issue with the SMD Version #17
Comments
Strange. Just to confirm you trying to build the software to run on the 1590b smd hardware, correct? If so, in guitar_pedal.cpp at the top you would need to have: #include "Hardware-Modules/guitar_pedal_1590b-SMD.h" (instead of the 125b version) and then // Hardware Interface You shouldn't have needed to remove the "-" from the file name. It compiles just fine for me as is, but perhaps there is some difference in compilers that doesn't like the "-". I'm on a mac, not sure if that matters. As for why there is no sound, that sounds strange. in the guitar_pedal.cpp, what does your main function look like? I assume you modified this part:
to only list your new overdrive module? It may be worth trying to have it use one of the existing sample ones to see if it works. Also, sometimes the flash memory on the seed gets into a weird state. The simplest way to get it to reset is to modify guitar_pedal_storage.h to change: // Peristant Storage Settings to another number. Like 1 or 3 doesn't matter. Then recompile and flash it to the device. When a file format mis-match is detected it will force clearing the flash memory. Hope that helps. Also, to answer your question. I'm not actively working on the project at the moment, but I do hope to pick it back up sometime in the near future. |
Hi there!I've made some progress in my research, and it seems like my compiler is acting up completely. Just to confirm, you're trying to build the software to run on the 1590b SMD hardware, correct? Correct! Despite the errors, the compilation is still working: I'm curious to know which compiler you're using. As for why there's no sound, it's strange. My hypothesis is that the lack of SDRAM seriously limits which effects I can use. I tried to modify this:
I'll keep this post updated as I continue my investigation whenever I get a bit more time. |
Hi!
Before we start, I want to clarify that I’m not using SDRAM and that I only want to activate a single effect.
I’m facing an issue with the SMD version of the pedal. Indeed, when I strictly follow your recommendations for flashing the Daisy Seed, I encounter this kind of problem:
So, I concluded that using
-
was causing the issue. I removed all the-
both in the code and in the names ofguitar_pedal_1590bSMD.h
andguitar_pedal_1590bSMD.cpp
(I could have used_
, but I’m not sentimental about it). Once that was done, I had no compilation issues.Next:
I ran
$ make program-boot
and everything went fine. Same for$ make program-dfu
, no issues.Then came the crucial moment when I tested my overdrive. But absolutely nothing happened. The sound passes through both jacks just fine. The Daisy Seed is properly connected. I tested with a multimeter, and the current seems fine everywhere.
But I don’t understand where the problem could be. I must be doing something wrong because it would be strange if I were the first one to encounter this issue.
Are you still working on this project?
PS: I’m still a beginner please don’t get mad at me.
I don’t see the rule:
make build-and-program-dfu
The text was updated successfully, but these errors were encountered: