|
|||||||||||
Technical Support On-Line Manuals µVision User's Guide About µVision User Interface Creating Applications Utilities Debugging Debug Commands Debug Functions Simulation Digital Input Push Button Interrupt Signal Impulse Patterns Analog Input Square Wave Signal Saw Tooth Signal Sine Wave Noise Signal Signal Combination UART Communication CAN Communication Dialog Pages Virtual Simulation Registers (VTREG) Simulate Incoming Messages Process Outgoing Messages Send Periodic Messages I²C Communication I²C Concepts I²C Simulation Virtual Simulation Registers (VTREG) Simulating an I²C Device Application Examples SPI Simulation XPAGE VTREG PPAGE VTREG Flash Programming Dialogs Example Programs Command Line Appendix |
Noise SignalThe following signal function generates a noise signal pattern. The input signal is provided to the VTREG AIN3. The variables volts, frequency, offset, and duration are used to adjust the signal. /*---------------------------------------------------------------------- Generate Noise Signal on AD Channel 3 ----------------------------------------------------------------------*/ SIGNAL void AIN3_Noise (void) { float volts; // peak-to-peak volatage float frequency; // output frequency in Hz float offset; // volatge offset float duration; // duration in Seconds float val; long i, limited; volts = 1.4; offset = 1.6; duration = 0.1; printf ("Noise Signal on AD Channel 3.\n"); limited = (duration * 100000); for (i = 0 ; i < limited; i++) { val = ((float) rand(0)) / 32767.0; AIN3 = (val * volts) + offset; swatch (0.00001); // in 10 uSec steps } } DEFINE BUTTON "AIN3 Noise","AIN3_Noise()" Start debugging in simulation mode and drag the port into the Logic Analyzer. Open the Toolbox and click the button AIN3 Noise to view the signal output:
| ||||||||||
|
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.