Difference between revisions of "Component: Delay (DSP)"

From Flowcode Help
Jump to navigationJump to search
(XML import of component documentation)
 
(XML import)
 
(7 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
|-
 
|-
 
| width="20%" style="color: gray;" | Author
 
| width="20%" style="color: gray;" | Author
| [http://www.matrixltd.com Matrix Ltd]
+
| Matrix Ltd
 
|-
 
|-
 
| width="20%" style="color: gray;" | Version
 
| width="20%" style="color: gray;" | Version
| 1.2
+
| 1.2 (Release)
 
|-
 
|-
 
| width="20%" style="color: gray;" | Category
 
| width="20%" style="color: gray;" | Category
Line 16: Line 16:
  
 
==[[File:Component Icon e0ddc704_6bab_4d08_8f10_19a14c6683ef.png|Image]] Delay component==
 
==[[File:Component Icon e0ddc704_6bab_4d08_8f10_19a14c6683ef.png|Image]] Delay component==
 +
Allows an adjustable delay to be inserted into the DSP system
  
 +
==Examples==
 +
Here is a simple example file for the Delay component.
 +
{{Fcfile|Delay.fcfx|Delay}}
 +
The DelayADC component is used to set the amount of delay that the component provides 0-2550 samples in steps of 10 samples.
 +
 +
 +
The Input ADC component is used to pass a variable value into the DSP chain to allow the delay to be simulated.
 +
 +
 +
Here is a picture showing the scope response of the delay component.
 +
 +
[[File:DSPDelay.jpg]]
  
==Examples==
 
''<span style="color:red;">No additional examples</span>''
 
  
 +
Note: 8-bit PICs can only reference an array of up to 256 elements. Anything more then this will cause compilation errors. There is a workaround documented on the user forums on how to get around this limitation but it adds overhead to the rest of the program.
  
 
==Downloadable macro reference==
 
==Downloadable macro reference==
  
 
===<span style="font-weight: normal;"><u><tt>DelayTick</tt></u></span>===
 
===<span style="font-weight: normal;"><u><tt>DelayTick</tt></u></span>===
''<span style="color:red;">No additional information</span>''
+
Passes a single value from a buffer into the delay buffer and spits out a delayed value at the other end
 
 
 
 
  
 
'''Parameters'''
 
'''Parameters'''
Line 40: Line 50:
  
 
===<span style="font-weight: normal;"><u><tt>Delay</tt></u></span>===
 
===<span style="font-weight: normal;"><u><tt>Delay</tt></u></span>===
''<span style="color:red;">No additional information</span>''
+
Passes an entire buffer into the delay buffer and spits out a delayed version of the buffer at the other end
 
 
 
 
  
 
'''Parameters'''
 
'''Parameters'''
Line 55: Line 63:
  
 
===<span style="font-weight: normal;"><u><tt>SetDelaySize</tt></u></span>===
 
===<span style="font-weight: normal;"><u><tt>SetDelaySize</tt></u></span>===
''<span style="color:red;">No additional information</span>''
+
Specifies the number of values in the delay buffer to allow the length of the delay to  be adjustable during runtime.
 
 
 
 
  
 
'''Parameters'''
 
'''Parameters'''
Line 80: Line 86:
 
This property is of type ''Signed integer'' and can be referenced with the variable name ''max_delay''.
 
This property is of type ''Signed integer'' and can be referenced with the variable name ''max_delay''.
  
''<span style="color:red;">No additional information</span>''
+
The maximum number of values to delay the incoming signal by
 
 
 
 
  
 
<span style="font-weight: normal;"><u>Initial Delay Count</u></span>
 
<span style="font-weight: normal;"><u>Initial Delay Count</u></span>
Line 88: Line 92:
 
This property is of type ''Signed integer'' and can be referenced with the variable name ''initial_delay''.
 
This property is of type ''Signed integer'' and can be referenced with the variable name ''initial_delay''.
  
''<span style="color:red;">No additional information</span>''
+
The initial delay that will be used at startup
 
 
 
 
  
 
<span style="font-weight: normal;"><u>Buffer Manager</u></span>
 
<span style="font-weight: normal;"><u>Buffer Manager</u></span>
Line 96: Line 98:
 
This property is of type ''Fixed list of ints'' and can be referenced with the variable name ''buffer_manager''.
 
This property is of type ''Fixed list of ints'' and can be referenced with the variable name ''buffer_manager''.
  
''<span style="color:red;">No additional information</span>''
+
Specifies the DSP system buffer manager
 
 
 
 
  
 
<span style="font-weight: normal;"><u>Input</u></span>
 
<span style="font-weight: normal;"><u>Input</u></span>
Line 104: Line 104:
 
This property is of type ''Fixed list of ints'' and can be referenced with the variable name ''input_a''.
 
This property is of type ''Fixed list of ints'' and can be referenced with the variable name ''input_a''.
  
''<span style="color:red;">No additional information</span>''
+
Specifies the buffer which is used as the input to the delay
 
 
 
 
  
 
<span style="font-weight: normal;"><u>Output</u></span>
 
<span style="font-weight: normal;"><u>Output</u></span>
Line 112: Line 110:
 
This property is of type ''Fixed list of ints'' and can be referenced with the variable name ''output_c''.
 
This property is of type ''Fixed list of ints'' and can be referenced with the variable name ''output_c''.
  
''<span style="color:red;">No additional information</span>''
+
Specifies the buffer which is used as the output to the delay
 
 
 
 
  
 
<span style="font-weight: normal;"><u>Sample Rate (Hz)</u></span>
 
<span style="font-weight: normal;"><u>Sample Rate (Hz)</u></span>
Line 120: Line 116:
 
This property is of type ''Floating point'' and can be referenced with the variable name ''sample_rate''.
 
This property is of type ''Floating point'' and can be referenced with the variable name ''sample_rate''.
  
''<span style="color:red;">No additional information</span>''
+
Sample rate used to generate some useful calculations
 
 
 
 
  
 
<span style="font-weight: normal;"><u>Max Delay (s)</u></span>
 
<span style="font-weight: normal;"><u>Max Delay (s)</u></span>
Line 128: Line 122:
 
This property is of type ''Floating point'' and can be referenced with the variable name ''del_max''.
 
This property is of type ''Floating point'' and can be referenced with the variable name ''del_max''.
  
''<span style="color:red;">No additional information</span>''
+
Maximum possible delay in seconds at the specified sample rate
 
 
 
 
  
 
<span style="font-weight: normal;"><u>Initial Delay (s)</u></span>
 
<span style="font-weight: normal;"><u>Initial Delay (s)</u></span>
Line 136: Line 128:
 
This property is of type ''Floating point'' and can be referenced with the variable name ''del_initial''.
 
This property is of type ''Floating point'' and can be referenced with the variable name ''del_initial''.
  
''<span style="color:red;">No additional information</span>''
+
Initial delay in seconds at the specified sample rate

Latest revision as of 11:25, 13 February 2015


Author Matrix Ltd
Version 1.2 (Release)
Category DSP


Image Delay component

Allows an adjustable delay to be inserted into the DSP system

Examples

Here is a simple example file for the Delay component. FC6 Icon.png Delay The DelayADC component is used to set the amount of delay that the component provides 0-2550 samples in steps of 10 samples.


The Input ADC component is used to pass a variable value into the DSP chain to allow the delay to be simulated.


Here is a picture showing the scope response of the delay component.

DSPDelay.jpg


Note: 8-bit PICs can only reference an array of up to 256 elements. Anything more then this will cause compilation errors. There is a workaround documented on the user forums on how to get around this limitation but it adds overhead to the rest of the program.

Downloadable macro reference

DelayTick

Passes a single value from a buffer into the delay buffer and spits out a delayed value at the other end

Parameters

This macro has no parameters


Return value

This call does not return a value


Delay

Passes an entire buffer into the delay buffer and spits out a delayed version of the buffer at the other end

Parameters

This macro has no parameters


Return value

This call does not return a value


SetDelaySize

Specifies the number of values in the delay buffer to allow the length of the delay to be adjustable during runtime.

Parameters

UINT Delay_Count


Return value

This call does not return a value


Simulation macro reference

This component does not contain any simulation macros


Property reference

Max Delay Count

This property is of type Signed integer and can be referenced with the variable name max_delay.

The maximum number of values to delay the incoming signal by

Initial Delay Count

This property is of type Signed integer and can be referenced with the variable name initial_delay.

The initial delay that will be used at startup

Buffer Manager

This property is of type Fixed list of ints and can be referenced with the variable name buffer_manager.

Specifies the DSP system buffer manager

Input

This property is of type Fixed list of ints and can be referenced with the variable name input_a.

Specifies the buffer which is used as the input to the delay

Output

This property is of type Fixed list of ints and can be referenced with the variable name output_c.

Specifies the buffer which is used as the output to the delay

Sample Rate (Hz)

This property is of type Floating point and can be referenced with the variable name sample_rate.

Sample rate used to generate some useful calculations

Max Delay (s)

This property is of type Floating point and can be referenced with the variable name del_max.

Maximum possible delay in seconds at the specified sample rate

Initial Delay (s)

This property is of type Floating point and can be referenced with the variable name del_initial.

Initial delay in seconds at the specified sample rate