Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Xavier

Pages: 1 ... 73 74 [75] 76 77 ... 149
1111

10. I don't remember. Easiest way is to try and see.

11. Yes

12. Yes < 16

13. "_" looked clearer than 0 to me on the UI.

14. right... Note scaling was added later, let me know if you find something that can be added to the documentation.

15. OK  :) I'll leave Enveloppe ;)

17. All clickable encoders are connected to the same digital in... So they cannot have different behaviour.

18. In the preenfm2 release level only affects the end of the enveloppe.

19. Do they send any value ? You said Note scaling midi are not documented, maybe that's what is sent.
If you find the solution by looking at the code, please share...

20. Ouch... correct... never realized that before. Difficult to fix now without breaking preset compatibility.

Best,

Xavier

1112
Hi,

Again, i'm far from my preenfm2 so i write that from memory.

1. 14 voices max instead of 16 because of memory limit and CPU (each voice has its own LFO so 2 voices of 3 operators is heavier on the CPU than 1 voice of 6).

2. sin ^2 : sin*sin.
szer : sin on the first half of the period then zero.
spos : sin always positive.

There were a discussion in the past, showing that these are not the most well chosen shapes  ;)

Off appeared later in the preenfm history. For compatibility it's internal value is 7. For ease of use it's shows up in the first shape slot.

3. I have to double check that but I assume you can set upper value for user waveform.

4. The NRPN conversion is a generic. So most of the time it's 0.01 * NRPN value.
As it's converted into float there's no real max.

5. preenfm2 envelope has level and period for each of the ADSR point, so you can start by silence without problem.

6. Preenfm2 arpegiator is from mutable instrument open source code. So have a look at the manual :
https://mutable-instruments.net/archive/midipal/manual/

7. Brth i the CC Breath midi input control change.
Seq are from the LFO sequencer.

8. yes DEC* is all decay.
Gate is the gate internal effect. It's an additional effect that is interesting to use with the 2 step sequencers.

9. Read 4 instead of 164. I'll fix that later.

To be continued....

1113
preenfm2 and preenfm3 / Re: pfm2 2016 OLED svg won't download
« on: July 22, 2017, 09:29:50 PM »

Thanks for the update.  :)

1114
preenfm2 and preenfm3 / Re: 2.07 update won't work
« on: July 18, 2017, 04:03:24 PM »
Hi,
I'm away from my computer so support is limitted during summer.
All preenfm2 files must  be in a /pfm2 folder : firmwares and bank.
Scala files and dx7 bank must be each in a specific subfolder.

http://ixox.fr/preenfm2/manual/usb-drive/
http://ixox.fr/preenfm2/manual/upgrade-firmware/

Xavier

1115
preenfm2 and preenfm3 / Re: RV1 10k trimmer- what's it for?
« on: July 13, 2017, 08:36:59 PM »
What PCB revision do you have ?
If R5d, check the OLED resistor is not empty.

Last firmware is 2.0.7 but that won't fix your problem :
http://ixox.fr/forum/index.php?topic=63505.0

1116
preenfm2 and preenfm3 / Re: RV1 10k trimmer- what's it for?
« on: July 13, 2017, 04:43:46 PM »
Hi Tom,

RV1 is the contrast resistor for LCD display. Useless if you have a OLED display.

P1 and P3 are describe at the end of this FAQ  :
http://ixox.fr/forum/index.php?topic=63377.0

Thanks for the Maplin tip. Ebay is also good place to buy low profile pins header if you're patient :
Search for "Single Row Round Pin 2.54mm Pitch Spacing Header"
They're cheap if you buy many.

Xavier

1117
preenfm2 and preenfm3 / Re: Saving preset into empty Bank/Combo slot
« on: July 09, 2017, 10:02:48 AM »
Thanks for the reminder and for the original suggestion ;) Seems like i missed it.
It's part of the doc now.
http://ixox.fr/preenfm2/manual/menu-mode/

1118

Not sure how it works in Cubase.
It's not displayed in the list of compatible DAW so i don't even know whether it works.

VST midi out => preenfm2 hardware. As soon as it's plugged, any knob turned on the VST should propagate to the preenfm2 display.
preenfm2 midi NRPN out => VST : turn a preenfm2 knobs, should show up in the VST.

In adition to that, any move on the VST or the hardware should be recordable as a DAW automation.
Any VST Knobs automation should propagate to both the VST and the hardware when played.

Xavier

1119

No, there's no manual.
Configuration should be simple, make midi from Cubase go to the preenfm2 hardware, make midi out from the preenfm2 go to cubase.
Disable midi thru in preenfm2. Make the preenfm2 sends and receives NRPN.
Becarefull to midi loop.

I don't have Cubase so i cannot give more details.

Xavier

1120
preenfm2 and preenfm3 / Re: 3 note max polyphony????
« on: July 02, 2017, 11:20:02 AM »

The max number of voice for one instruments depends on how many voices are allocated by other instruments.
Set I2, I3, I4 voices to 0.
Save the default combo  Menu>Save>Defl>Save
Than you'll get the max number for your I1. Up to 14 if your I1 algorithm uses 3 operators.

Xavier

1121
preenfm2 and preenfm3 / Re: MIDI messages question
« on: June 21, 2017, 09:14:15 PM »

For all NRPN floating point params : the forumla is :
Code: [Select]
            valueToSend = (floatValue - param->minValue) * 100.0f + .1f ; // minValue if the minimal value authorized for the param (-1.0; 0.0...).
            cc.value[0] = 6;
            cc.value[1] = (unsigned char) (valueToSend >> 7);
            sendMidiCCOut(&cc, false);
            cc.value[0] = 38;
            cc.value[1] = (unsigned char) (valueToSend & 127);
            sendMidiCCOut(&cc, false);

IF the minimal value of the param is 0.0 which is the case for ADSR.
The NRPN 14 bits value is the time in 1/100th of seconds.

If you use CC you cannot send all values :
https://github.com/Ixox/preenfm2/blob/master/src/midi/MidiDecoder.cpp#L477
The param will be value/64 in sec for A, and /32 for R.

Xavier


1122
preenfm2 and preenfm3 / Re: MIDI messages question
« on: June 14, 2017, 09:12:32 AM »
Thanks a lot for your message. I fixed the errors.

LFO <n> : NRPN LSB should use (n-1) in the formula instead of n.

Let me know if you find other errors.

Xavier

1123
preenfm2 and preenfm3 / Re: Harsh noise at 13,5kHz from preenFM2
« on: June 11, 2017, 08:17:40 AM »
Does this noise happen with all PCB versions?  Does it happen with R5c?

I just realised there was an PCB version error in the link above. I wrote R4 instead of R5.
Should be clearer now:
http://ixox.fr/forum/index.php?topic=69159.0

The noise come from the yellow OLED display so 'yes'.
With R5c the shield modification is doable but more complicated than with the R5d.
A safe way to avoid the problem is to use a LCD display (unfortunately not compatible with the metal case).

I learnt recently that some web site sells the R5c version   :-\

1124
preenfm2 and preenfm3 / Re: PreenFM2 in recordings ;)
« on: June 05, 2017, 11:09:29 AM »

 :)
The track preen1bank2 is very very nice:
https://media.hardwax.com/audio/77991_B2.mp3

1125
preenfm2 and preenfm3 / Re: PreenFM2 in recordings ;)
« on: June 05, 2017, 11:02:33 AM »

Fantastic work..  8)
I just shared this on the facebook preenfm site. It has more visibility than this forum  ;)
Thanks a lot for sharing here.

Xavier

Pages: 1 ... 73 74 [75] 76 77 ... 149