Search found 65 matches

by igorp
Tue Jan 15, 2019 11:17 am
Forum: FV-1 software questions
Topic: EEPROM memory map quest and I2C tips
Replies: 5
Views: 6377

Re: EEPROM memory map quest and I2C tips

1. Patches are going one after another in spin asm project. So, if you have no empty slots in project, you will have no empty patches in hex file.
2. fully empty patch contain {0x11 , 0 ,0 , 0} x128 times .
3. Not programmed area on the flash chip usually contains all 0xFF
by igorp
Mon Jan 14, 2019 7:18 am
Forum: FV-1 hardware questions
Topic: Controlling Pot FV-1 with PWM
Replies: 4
Views: 5176

Re: Controlling Pot FV-1 with PWM

atmel mcu have hardware pwm, but afair it's unused in arduino.
If you write own software on C , then you can use hardware pwm.

For now you can provide additional LPF on FV-1 side like : ldax Pot2 : rdfx pot2f , 0.002 : wrax pot2f , 1
by igorp
Sun Jan 13, 2019 10:45 am
Forum: FV-1 hardware questions
Topic: Controlling Pot FV-1 with PWM
Replies: 4
Views: 5176

Re: Controlling Pot FV-1 with PWM

Of course, square waves are wide specter, so, use low pass filter (at least RC chain of 10K resistor and 100n cap) maximum closer to arduino
And don't forget divider +5V of arduino into 3.3V of FV-1
by igorp
Fri Jan 11, 2019 1:15 pm
Forum: FV-1 software questions
Topic: Dual mono effect
Replies: 1
Views: 3406

Re: Dual mono effect

... wrlx lf1,kshlf wra d1,1.5 ;;rdax dout,1 ; comment read delay wrax dacl,0 comment all right channel: ;rda d1#,krt ;rdax apout,1 ;rda lap2a#,0.5 ;wrap lap2a,-0.5 ;rda lap2b#,0.5 ;wrap lap2b,-0.5 ;rdfx lf2,0.5 ;wrlx lf2,kshlf ;wra d2,1.5 ;rdax dout,1 ;wrax dacr,0 Then: rmpa 1 ;;;wrax dout,0 ;commen...
by igorp
Fri Jan 11, 2019 1:05 pm
Forum: FV-1 software questions
Topic: EEPROM memory map quest and I2C tips
Replies: 5
Views: 6377

Re: EEPROM memory map quest and I2C tips

"it safe to assume any patch starting with 0x80" - never assume this patch can start with any of commands+data. Use address offset. Patch#0 = offset 0 , Patch#1 = 0x200 , Patch#n = n*0x200 if You need compression - use popular compressors, or kind of RLE. I did kind frequency compressor (F...
by igorp
Fri Nov 23, 2018 3:38 am
Forum: FV-1 software questions
Topic: Can a triangle LFO be used in chorus?
Replies: 8
Views: 7976

Re: Can a triangle LFO be used in chorus?

Ramp LFO (DDS) is only several lines of code, then it can be mirrored to triangle, then you can use servo technique to move pointer
by igorp
Tue Nov 13, 2018 10:45 am
Forum: FV-1 hardware questions
Topic: Fake Chip
Replies: 5
Views: 4136

Re: Fake Chip

my ali experience was bad, chip were D-category , noisy , with lot of problems in sound.
by igorp
Fri Oct 19, 2018 2:01 am
Forum: FV-1 software questions
Topic: write internal programs
Replies: 5
Views: 4231

Re: write internal programs

order several thousands FV-1 with your custom internal programs, as electro-harmonix did
by igorp
Thu Oct 18, 2018 1:46 am
Forum: Algorithm development
Topic: unconditional SKP
Replies: 8
Views: 10293

Re: unconditional SKP

no flags is testing, but it working?
Great idea, thank you!
by igorp
Thu Oct 18, 2018 1:43 am
Forum: Algorithm development
Topic: Idea - Audio ADC as a digital input
Replies: 6
Views: 6180

Re: Idea - Audio ADC as a digital input

ADC could work with square waves, 20Hz and higher (you will get harmonics on input), I tested it. Square waves is ticking and clicking in audio path, because adcr & adcl pins are close to each other and square waves are rich with higher order harmonics. So you can generate sine internally via FV...
by igorp
Wed Oct 17, 2018 4:10 am
Forum: Algorithm development
Topic: Idea - Audio ADC as a digital input
Replies: 6
Views: 6180

Re: Idea - Audio ADC as a digital input

Square wave is bad idea. You will get interference on high volumes. So, make RC filter as closer to MCU as it possible. Better to use internal Sin LFO (up to 20 Hz), or do your own sine LFO , somthing like that (was previously in forum and battling LFOs patch): skp run , start SOF 0 , 0.5 ;setup LFO...
by igorp
Mon Oct 15, 2018 2:45 am
Forum: FV-1 hardware questions
Topic: can you 4 eeprom
Replies: 9
Views: 6194

Re: can you 4 eeprom

ice-nine wrote: Sun Sep 30, 2018 3:48 am Yes you can you up to 8 EEPROMS if done correctly...
much more, than 8. Because inactive ROMs can be on same inactive address.


32lc64 and others working fine, because have same protocol (2 bytes addressing)
by igorp
Mon Jul 23, 2018 5:28 am
Forum: FV-1 software questions
Topic: Reverse delay?
Replies: 47
Views: 96603

Re: Reverse delay?

ok, after PM I am showing cuted off reverse part of pdx delay , as is fade envelope is not too perfect, but it was no room for more accurate one, because patch was complex. Hello to Fast Tracker 2.07 authors and thanks for happy childhood ; reverse-delay by igor@shift-line.com 2018 ; simplified part...
by igorp
Mon Jul 23, 2018 2:44 am
Forum: FV-1 software questions
Topic: Reverse delay?
Replies: 47
Views: 96603

Re: Reverse delay?

I did, but for commertial product . declicker diagramm you can see on the photo above.
by igorp
Wed Mar 14, 2018 11:09 am
Forum: Algorithm development
Topic: unconditional SKP
Replies: 8
Views: 10293

Oh, i do simple analysis like "wrax temp, 0 : skp zro , label" , but thought skp has more common way to make unconditional jump.

Thank you