Search found 1281 matches
- Thu Feb 12, 2026 9:05 am
- Forum: General Announcements
- Topic: Fake distributor in China
- Replies: 0
- Views: 31927
Fake distributor in China
We have been made aware of at least one fake distributor in China. The ONLY legit distributors of FV-1 and related dev boards are Experimental Noize, Profusion and Microtips. Any other company is not an authorized distributor and should be avoided at all costs.
- Mon Jan 12, 2026 7:51 am
- Forum: FV-1 hardware questions
- Topic: Latency in FV-1 hardware
- Replies: 13
- Views: 65133
Re: Latency in FV-1 hardware
Please do not repost the same question, I answered that in your first post on this.
- Mon Jan 12, 2026 7:49 am
- Forum: FV-1 hardware questions
- Topic: Fv-1
- Replies: 3
- Views: 25652
Re: Fv-1
Due to the way the pitch shifter works there will always be a delay. We need to save some sample before we can pitch shift them.
- Tue Dec 23, 2025 7:39 am
- Forum: Algorithm development
- Topic: JMP Instruction?
- Replies: 7
- Views: 24346
Re: JMP Instruction?
OK, something odd with the assembler. On a short test program it will catch "jmp" as an error but on a longer program it may not flag it (or it drops the error, not sure at this time). In any case don't use "jmp", what to replace it with will depend on the surrounding code and wh...
- Mon Dec 22, 2025 5:54 pm
- Forum: Algorithm development
- Topic: JMP Instruction?
- Replies: 7
- Views: 24346
Re: JMP Instruction?
This is strange, on my personal machine I am getting the same thing as you and no error. Need to dig into this a bit.
- Mon Dec 22, 2025 1:30 pm
- Forum: Algorithm development
- Topic: JMP Instruction?
- Replies: 7
- Views: 24346
Re: JMP Instruction?
Finally got a chance to try it and SpinAsm is giving an error for unrecognized op code:
<0000>[ Pass 2] [ 1030] Line: 2 "jmp lbl1 " - ERROR:Unrecognized or obsolete opcode - jmp
Can you post the code that appears to assemble?
<0000>[ Pass 2] [ 1030] Line: 2 "jmp lbl1 " - ERROR:Unrecognized or obsolete opcode - jmp
Can you post the code that appears to assemble?
- Sun Dec 14, 2025 7:00 pm
- Forum: Algorithm development
- Topic: JMP Instruction?
- Replies: 7
- Views: 24346
Re: JMP Instruction?
You are correct that there is no JMP instruction so I would expect that SpinASM should throw an error. I will try to test it this week and see if I can determine why it is assembling to the code you show.
- Fri Nov 14, 2025 6:31 pm
- Forum: Algorithm development
- Topic: FV-1 delay without pitch modulation when changing delay time?
- Replies: 2
- Views: 16033
Re: FV-1 delay without pitch modulation when changing delay time?
You could wait to change the pointer until after the user stops moving it then jump to the new point but you will hear a discontinuity in the sound and the user will feel a delay in changes. So comes down to do you want to hear pitch shifting or glitches?
- Sun Nov 09, 2025 8:23 pm
- Forum: Algorithm development
- Topic: Sandbox FV-1 pedal
- Replies: 0
- Views: 27565
Sandbox FV-1 pedal
Open source, USB C interface for in circuit programming of EEPROM, browser based assembler/eeprom programming so works on Windows, Mac, Linux, etc. use Chrome for best experience https://sandboxpedal.com/
- Fri Oct 03, 2025 8:46 am
- Forum: Algorithm development
- Topic: Octave Down Patch - OC-2 & U-Boat Style
- Replies: 12
- Views: 98767
Re: Octave Down Patch - OC-2 & U-Boat Style
I think what is causing me confusion is when you say: I just want the note I specify to go up or down to the lower octaves, that's all. What do you mean by "the note I specify"? Any audio you play into the algorithm will be shifted, shifting is not on a note by note basis. For example if y...
- Thu Oct 02, 2025 5:00 pm
- Forum: Algorithm development
- Topic: Octave Down Patch - OC-2 & U-Boat Style
- Replies: 12
- Views: 98767
Re: Octave Down Patch - OC-2 & U-Boat Style
I am still unclear on what you want. Do you mean you want to play a note and hear the original note and a shifted version of the note together? So if you play A440 you want to hear A440 and A880 (A440 up one octave) as an example? If this is correct then you do want a pitch shifter that you can mix ...
- Thu Oct 02, 2025 8:19 am
- Forum: Algorithm development
- Topic: Octave Down Patch - OC-2 & U-Boat Style
- Replies: 12
- Views: 98767
Re: Octave Down Patch - OC-2 & U-Boat Style
I do not use SpinCAD so you will have to ask over on a SpinCAD forum. The native pitch shifter in FV-1 will not shift by 3 octaves so you will have to calculate the coefficients to use from AN-0001 and use 2 in series. I do not understand "I don't want a pitch shift! I just want the note to mov...
- Mon Sep 29, 2025 4:30 pm
- Forum: Algorithm development
- Topic: Whammy pitch Octaver fv-1 (SpinCad)
- Replies: 1
- Views: 15432
Re: Whammy pitch Octaver fv-1 (SpinCad)
SpinCAD questions should go to a site like PedalPCB as DigitalLarry is rarely here so he may never see it.
- Mon Sep 29, 2025 4:24 pm
- Forum: Algorithm development
- Topic: Octave Down Patch - OC-2 & U-Boat Style
- Replies: 12
- Views: 98767
Re: Octave Down Patch - OC-2 & U-Boat Style
Correct, you use SpinAsm to assemble the code and save it to a hex file and use that to program an EEPROM. If you have a Spin FV-1 dev board SpinAsm can write to the EEPROM on it.
- Tue Sep 23, 2025 7:31 am
- Forum: Algorithm development
- Topic: The scope of " CHO SOF ,a,b,c "
- Replies: 1
- Views: 15620
Re: The scope of " CHO SOF ,a,b,c "
What you get out of the "CHO SOF" instruction depends on which LFO you selected and the settings of the bits in the C field. But there is an error in your command and I see it is in the SpinAsm PDF as well, the proper format is: CHO SOF N, C, D not CHO SOF ,N, C, D this is in the example y...