Interrupt problem (beginner)

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
lock attach
Attachments are accessible only for community members.
Anonymous
Not applicable

I am beginner with PSoC 5 and I started with a simple project.

   

I want to toggle a diode (Pin_2 on the schematics) with a push-button (Pin_1 on the schematics). In order to do that I am using GlitchFilter to debounce the push button.

   

Everything works just fine when I step through the program with a debugger, but as soon as I run the program, it stops working. It enters the interrupt just once and then stops working. It looks like interrupt routine do not respond. And there is no difference if interrupt is triggered as "rising edge" or "derived", it does the some thing.

   

I hope that some of you can see what the problem is.

   

Here are design, and code for main.c and isr_1.c (interrupt routine).

   

Thanx in advance.

0 Likes
7 Replies
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

There is a function named ISR_Clearpending(). Have a look at the API and try, this may hewlp you.

   

 

   

Happy interrupts

   

Bob

0 Likes
Anonymous
Not applicable

Thanx for a fast reply.

   

I'll definitely try it.

0 Likes
Anonymous
Not applicable

Hi Paja,

   

 

   

Which kit are you using to test this project?

   

If you are using CY8CKIT-001 or CY8CKIT-050, then the switch available on board (SW1 and SW2) are push-to-ground.

   

Hence, configure the input pin's Drive Mode as Resistive Pull Up.

   

 

   

 

   

 

   

If you are using CY8CKIT-014, the switch is configured as push-to-Vcc. Hence, the drive mode for the pin should be set as Resistive Pull down.

   

If configured this way, the pins will not be floating.

   

Secondly, the header file of the pin you are intending to toggle should be included in the isr. Use the macro

   

#include "Pin_2.h" in the isr_1.c file

0 Likes
lock attach
Attachments are accessible only for community members.
Anonymous
Not applicable

I created a project similar to the one you have stated and tested it on PSoC5 using CY8CKIT-001.

   

The output LED toggled upon every switch press (SW1).

   

 

   

The working project is attached for your reference.

0 Likes
Anonymous
Not applicable

 Hi dasq.

   

Thank you very much for help. The kit I use have a push button connected to +Vcc (I can see it in a data sheet).

   

I will try your project today.

   

Thanks once again.

0 Likes
Anonymous
Not applicable

Hi Paja,

   

 

   

Then just modify the drive mode of the input pin in the project to Resistive Pull Down.

   

Tha should get the project working.

   

All the best !

0 Likes
Anonymous
Not applicable

Hi dasq.

   

It works.

   

Thank you very much.

0 Likes