Keil Logo

Interrupt Signal

The following signal function generates GPIO interrupt signals on 2 pins.

/*----------------------------------------------------------------------
  Generates a number of pulses on GPIO 0.14 and GPIO 1.24
----------------------------------------------------------------------*/
SIGNAL void GPIO_0_14_Square (unsigned int pulses)  {

  printf ("%d Square Pulses on GPIO 0.14\n", pulses);

  PORT0 = 0x0;
  PORT1 = 0x0;
  while (pulses--)
  {
    PORT0 |=   (1 << 14);          // set    pin 0.14
    swatch (0.02);
    PORT1 &=  ~(1 << 24);          // reset  pin 1.24
    swatch (0.01);
    PORT1 |=   (1 << 24);          // set    pin 1.24
    PORT0 &=  ~(1 << 14);          // reset  pin 0.14
    swatch (0.02);
  }
}


GPIO_0_14_Square (100);            // 100 Pulses at debugger startup

DEFINE BUTTON "EINT1 10  Pulses", "GPIO_0_14_Square (10)"
DEFINE BUTTON "EINT1 100 Pulses", "GPIO_0_14_Square (100)"

Start debugging in simulation mode and drag the port into the Logic Analyzer. Open the Toolbox and click the buttons EINT1 10 Pulses or EINT1 100 Pulses to view the signal output on the pins of PORT0.14 and PORT1.24:

Logic Analyzer Signal Display

  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.