Keil Logo

ノイズシグナル

次のシグナル関数テンプレートを使用して、シグナルパターンにノイズを入れることができます。入力シグナルは、VTREG AIN0 に提供されています。変数ボルト、周波数、オフセット、および期間を使用して、ノイズシグナルを調整できます。

/*----------------------------------------------------------------------*/
/*   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()"

上の設定では、AIN3 入力で次のシグナルが生成されます。

[ロジックアナライザ](Logic Analyzer)ウィンドウに表示されるノイズ入力シグナル

  Arm logo
Important information

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.

Change Settings

Privacy Policy Update

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.