Support

If you have a problem or need to report a bug please email : support@dsprobotics.com

There are 3 sections to this support area:

DOWNLOADS: access to product manuals, support files and drivers

HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects

USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here

NEW REGISTRATIONS - please contact us if you wish to register on the forum

Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright

Bypass On Silence

For general discussion related FlowStone

Re: Bypass On Silence

Postby KG_is_back » Wed May 21, 2014 2:08 pm

Father wrote:How about pack/unpack components? Can we replace them with some code?!


of course... assembly only though

Code: Select all
///pack
monoin mono0;
monoin mono1;
monoin mono2;
monoin mono3;
streamout out;

fld mono0[0];
fstp out[0];
fld mono1[0];
fstp out[1];
fld mono2[0];
fstp out[2];
fld mono3[0];
fstp out[3];



Code: Select all
///unpack
monoout mono0;
monoout mono1;
monoout mono2;
monoout mono3;
streamin in;

fld in[0];
fstp mono0[0];
fld in[1];
fstp mono1[0];
fld in[2];
fstp mono2[0];
fld in[3];
fstp mono3[0];

KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Bypass On Silence

Postby Father » Wed May 21, 2014 3:23 pm

So that's how its done. Thanks Bro!
These look delicious! :P Hope they are totally safe to use.
Father
 
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

Re: Bypass On Silence

Postby KG_is_back » Wed May 21, 2014 4:01 pm

Just one thing is missing. The way the are now, they are executed only in stage 2 by default. To make them working in all 4 stages you have to copy the execution code 4 times ad write "stage0;" "stage1;" "stage2;" and "stage3;" before all of them like this:


Code: Select all
///pack
monoin mono0;
monoin mono1;
monoin mono2;
monoin mono3;
streamout out;

stage0;
fld mono0[0];
fstp out[0];
fld mono1[0];
fstp out[1];
fld mono2[0];
fstp out[2];
fld mono3[0];
fstp out[3];

stage1;
fld mono0[0];
fstp out[0];
fld mono1[0];
fstp out[1];
fld mono2[0];
fstp out[2];
fld mono3[0];
fstp out[3];

stage2;
fld mono0[0];
fstp out[0];
fld mono1[0];
fstp out[1];
fld mono2[0];
fstp out[2];
fld mono3[0];
fstp out[3];

stage3;
fld mono0[0];
fstp out[0];
fld mono1[0];
fstp out[1];
fld mono2[0];
fstp out[2];
fld mono3[0];
fstp out[3];
KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Bypass On Silence

Postby Father » Wed May 21, 2014 4:27 pm

Got it. I noticed the connection to unpack isn't turning blue when i connect to it, like the standard unpack. Is it OK?
Father
 
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

Re: Bypass On Silence

Postby KG_is_back » Wed May 21, 2014 6:42 pm

Father wrote:Got it. I noticed the connection to unpack isn't turning blue when i connect to it, like the standard unpack. Is it OK?


It is probably just a coloring bug
KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Bypass On Silence

Postby infuzion » Tue Jun 03, 2014 5:14 am

KG_is_back wrote:
Father wrote:Got it. I noticed the connection to unpack isn't turning blue when i connect to it, like the standard unpack. Is it OK?
It is probably just a coloring bug
Happens.

I used to have an example on the SM WiKi: basically Stream-to-green, If > 0 Then low -> switch off audio.
Someone else on the SM forum had an genius idea to
Code: Select all
jmp
entire code blocks.
infuzion
 
Posts: 109
Joined: Tue Jul 13, 2010 11:55 am
Location: Kansas City, USA, Earth, Sol

Re: Bypass On Silence

Postby Father » Sat Jun 07, 2014 5:49 pm

Jumping individual codes is a time consuming work and the result is never 100% bypass. But when you are using a selector it shuts off the stream and drops everything. As i understood, this only works with a green selector.
Father
 
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

Previous

Return to General

Who is online

Users browsing this forum: No registered users and 58 guests