Search found 627 matches
- Tue Dec 03, 2024 8:30 pm
- Forum: Voltage Modular
- Topic: Boolean Logic Sequencer Error
- Replies: 13
- Views: 498
Re: Boolean Logic Sequencer Error
When input 1 is connected to the Mini LFO, it is alternating between (0V / 'Off' / Logic Low) and (+5V / 'On' / Logic High) on a regular basis, as shown by the red Multi-Oscilloscope trace in my most recent post. Exactly, that's more or less what I said about the LFO inverting the signal and not th...
- Mon Dec 02, 2024 9:59 pm
- Forum: Voltage Modular
- Topic: Boolean Logic Sequencer Error
- Replies: 13
- Views: 498
Re: Boolean Logic Sequencer Error
Still doesn't add up. The way I see it is this: Looking at the 3 pictures on my first post above: 'And' works as expected as input 1 is on and input 2 is off. 'Nor' and 'Xnor' don't work as expected as 1 is on , 2 is off and according to truth tables in this state the output should be off. When inp...
- Sun Dec 01, 2024 12:12 am
- Forum: Voltage Modular
- Topic: Boolean Logic Sequencer Error
- Replies: 13
- Views: 498
Re: Boolean Logic Sequencer Error
The inversion is caused by the NOR or XNOR gates. Now I'm more confused. If this is so it sounds to me like they are doing what they shouldn't be. :?: I give up, lol. No, they're working fine. It's the fact that there is no signal connected to the right-hand input of the logic gates which explains ...
- Mon Nov 25, 2024 7:59 am
- Forum: Cherry Audio Store
- Topic: New Instrument Suggestions List
- Replies: 30
- Views: 20817
Re: New Instrument Suggestions List
There is no contest here... what is seriously needed is a full blown recereation of the EMS VCS 3 . And yes I know about free Cynthia, however the VCS 3 is ripe for a make-over with all the added bells and whistles that Cherry Audio can bring. On the plus side, it should be a relatively simple proj...
- Mon Nov 25, 2024 7:41 am
- Forum: Voltage Modular
- Topic: Boolean Logic Module User Manual Question.
- Replies: 6
- Views: 530
Re: Boolean Logic Module User Manual Question.
To add to the pendantry, a signal is something that conveys information. The phrase "gate signal" doesn't indicate any particular value for the signal other than implied by the type constraint of "gate". So say on or off, high or low, 1 or 0, 5 V or 0 V, true or false etc. All t...
- Sat Nov 23, 2024 7:45 pm
- Forum: Voltage Modular
- Topic: Boolean Logic Module User Manual Question.
- Replies: 6
- Views: 530
Re: Boolean Logic Module User Manual Question.
Should this be: 'While both or one input signals are "off" a gate signal will be sent to the output.' as this is the way NAND works. Yes, I agree with your definition. The terminology seems to jump around when they are describing the different logic functions. I think this may have trippe...
- Thu Nov 21, 2024 8:45 pm
- Forum: Module Designer
- Topic: Ability to add compiler flags
- Replies: 11
- Views: 1035
Re: Ability to add compiler flags
Okay, here's the relevant code, trimmed down to essentials: private double inputMeterValueL; // new value for input meter private double outputMeterValueL; // new value for output meter private double inputMeterLastL; // last value for input meter private double outputMeterLastL; // last value for ...
- Thu Nov 21, 2024 11:53 am
- Forum: Module Designer
- Topic: Ability to add compiler flags
- Replies: 11
- Views: 1035
Re: Ability to add compiler flags
The variables in question are [...] are properly set in ProcessSample() , but are set to 0.0 in Initialize() and at the top of the first run through ProcessSample() OK, it's difficult to debug what's happening without seeing the actual code, or at least the appropriate snippets that are causing pro...
- Thu Nov 21, 2024 11:05 am
- Forum: Module Designer
- Topic: Ability to add compiler flags
- Replies: 11
- Views: 1035
Re: Ability to add compiler flags
The variables that evoke this error are all user-defined members of the main class, and I initialize them both in the Initialize() method and in a one-time-only method I run at the top of ProcessSample() . I'd still be tempted to perform an explicit initialization of the variable values at the poin...
- Wed Nov 20, 2024 7:10 pm
- Forum: Module Designer
- Topic: Ability to add compiler flags
- Replies: 11
- Views: 1035
Re: Ability to add compiler flags
The error message is particularly galling, since the variable is always initialized, just in another part of the program, and there's no way to initialize it in the location where it's being used. Earlier versions of Java apparently weren't so picky. Are you using multiple modules/classes in your p...