Relevant Documents
Contact us to discuss your requirements of pulse/pattern generators for sale. Our experienced sales team can help you identify the options that best suit your needs.
Download article(304KB)
The Tabor family of Arbitrary Waveform Generators (AWGs) is designed for easy programming of pulses and pulse characteristics. This document will quickly guide you through the process of pulse generation.
The front panel of the AWG is depicted below.
1. Press the Pulse button in the function menu.
2. Now that you have chosen to generate a pulse, you can press the menu buttons on the left-hand side of the panel to select an array of pulse attributes for modification. The actual list of displayed buttons can vary depending on the pulse setup as selected in the Config menu (see step 0). The various possible pulse attributes that can be set are:
TIP
Whenever the arrows icon is displayed there are more attribute menu buttons to be shown below. Simply scroll down using the dial or cursor key.
3. After selecting the attribute for modification, modify the displayed value using the dial or the cursor keys, or by entering the value using the numeric keypad. Press ENTER to save the modified parameter value.
4. To configure the pulse setup, press the Config menu button.
5. The pulse configuration menu is displayed as shown below:
Select and modify configuration parameters as necessary:
Fast. The transition from low level to high level (and from high level to low level) is nearly instantaneous, occurring within 1 nanosecond.
Linear. For linear, interval-configurable leading edge and trailing edge transitions.
For more information, please visit What Is Universal Counter.
Symmetrical. For linear, interval-configurable leading edge and trailing edge transitions. When you configure the leading edge interval, the trailing edge interval is automatically configured with the same value.
6. Press the Output button in the control menu to configure the output settings.
7. Define the channels in the Output section as being ON or OFF, modifying the settings using the dial or the cursor keys.
TIP
You can quickly modify the output settings by selecting CH1 or CH2 on the keypad, and toggling the OUTPUT key to turn the channel on or off.
8. Select the output path of the channels in the Output Couple section, modifying the settings using the dial or the cursor keys.
Press ENTER to save the output settings.
To learn more about Tabors solutions or to schedule a demo, please contact your local Tabor representative or your request to
The incoming pulse is on a different pin, right?
If you're doing timing-critical stuff like this, I would recommend going with direct port manipulation instead of digitalWrite / digitalRead (they're rather "slow").
So:
#define dwon(port, pin) (port |= _BV(pin))
#define dwoff(port, pin) (port &= ~(_BV(pin)))
const int outputPin = 3;
void setup()
{
pinMode(inputPin, INPUT);
pinMode(outputPin, OUTPUT);
}
// PORTD, pin 3 is digital I/O pin 3
// lookup the schematic for these values
void loop()
{
// pulse pin 3
dwon(PORTD, 3);
delayMicroseconds(10);
dwoff(PORTD, 3);
}
And then the best way to capture I think would be an interrupt. So long as you keep your interrupt as short as possible (ex: set a "volatile" variable to 1, and that's it), I think it should be fine.
Otherwise you can bring the output pin high, then sit and wait for the input pin to go high, then bring the output pin low again (after waiting the appropriate time..)
For more Rbw And Vbw In Spectrum Analyzerinformation, please contact us. We will provide professional answers.
Comments
0