CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

RS232 interrupt problem

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
Aamir



Joined: 11 Apr 2010
Posts: 13

View user's profile Send private message

RS232 interrupt problem
PostPosted: Sat Feb 25, 2012 11:20 am     Reply with quote

Hi everyone,
I have been trying this for a while but its not working, I know there will be very small mistake, but can't figure it out.

I am making a remote control lamp, that turns on, when I transmit a signal, off when I do it again. Same signal for on and off.
Code:

#include <16F877.H>
#fuses HS, NOWDT, NOBROWNOUT, NOPROTECT
#use delay(clock=20000000)
#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7)

int flag=2;
int q=0,a=0,b=0;
char Rcv;

ser(){
   output_low(pin_e1);delay_ms(200);output_high(pin_e1);
   delay_ms(500);
//if (Rcv=='Q'){
   if(flag==1){    //new   q==0
   output_high(pin_b7);
   a=1;}
   
   if (flag==2) {    //new q==1
   output_low(pin_b7);
   b=1;
   }
//}
//if(a==1){
//q=1;a=0;}
//if(b==1){
//q=0;b=0;}

delay_ms(5000);
}

#INT_RDA       //serial interrupt: when data available at serial pin of PIC
void SerialInt()
{
   Rcv=getchar(); //a loop that stores data from serial
//   output_low(pin_e1);delay_ms(200);output_high(pin_e1);
   delay_ms(500);
   if(flag==1){  //new
   flag=2;}  //new
   else if(flag==2){  //new
   flag=1;}  //new
   ser();
}

void main (){
enable_interrupts(global);     //defines that all interrupts are global
enable_interrupts(int_rda);     // serial data interrupt
//printf("hello");
//output_high(pin_e1);
output_low(pin_b7);
while(1){
output_high(pin_e1);
}
}

When I connect the hardware, it only turns on, never turns off. I checked the hardware, no faults, maybe code is the problem.
temtronic



Joined: 01 Jul 2010
Posts: 9200
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Sat Feb 25, 2012 11:53 am     Reply with quote

two items

1) add 'errors' to the use RS232(...) options....

2) get RID of all the delays inside the ISR ! You've got at least a 6 SECOND delay inside the ISR effectively killing the program.

Take a look at the examples CCS supplies in the examples folder( ex_sisr.c , I think..) for ISR type serial input.

If you're still 'lost' consider simple 'inline' code, without using ISR.
Aamir



Joined: 11 Apr 2010
Posts: 13

View user's profile Send private message

PostPosted: Sun Feb 26, 2012 3:34 am     Reply with quote

Thanks, actually i added delay because i want it to take single input at a time, i will remove it anyway.
Ttelmah



Joined: 11 Mar 2010
Posts: 19446

View user's profile Send private message

PostPosted: Sun Feb 26, 2012 5:27 am     Reply with quote

Just receive characters in the ISR.
Then in the main code, toggle your pin, wait, etc..
So:
Code:

#include <16F877.H>
#fuses HS, NOWDT, NOBROWNOUT, NOPROTECT
#use delay(clock=20000000)
#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7, ERRORS)

char Rcv=0;
#define OFF (0)
#define ON (1)

#INT_RDA       //serial interrupt: when data available at serial pin of PIC
void SerialInt(void) {
   Rcv=getchar(); //a loop that stores data from serial
}

void main(void ){
   int1 state=OFF;
   enable_interrupts(global);     //defines that all interrupts are global
   enable_interrupts(int_rda);     // serial data interrupt
   output_low(PIN_B7);
   output_high(PIN_E1);
   while(1){
      switch (state) {
      case OFF:
           if (Rcv) {
              //Here character has been received
              output_high(PIN_B7)
              delay_ms(5500); //delay before next change is allowed
              Rcv=0; //any characters received will be thrown away
              state=ON;
           }
           break;
      case ON:
           if (Rcv) {
              //again character now received
              output_low(PIN_B7);
              delay_ms(5500);
              Rcv=0;
              state=OFF;
           }
           break;
       }
   }
}


All this does is sits looping, waiting for a character to arrive. When it does, it toggles pin B7, waits 5.5 seconds, then throws away any characters receives, and starts waiting again.

Hopefully gives an idea of how to handle what you want.

Best Wishes
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group