Author |
Message |
Topic: 2 Timers (multitasking) . . . |
ivan_ult
Replies: 6
Views: 7686
|
Forum: General CCS C Discussion Posted: Thu Nov 27, 2008 9:41 am Subject: 2 Timers (multitasking) . . . |
Thanks a lot , for now I've use 2 877 (there is a rush in this project), but I will try to do your suggestions the next time (1 weeek ), so I'll keep you guys posted. And thanks again. ... |
Topic: 2 Timers (multitasking) . . . |
ivan_ult
Replies: 6
Views: 7686
|
Forum: General CCS C Discussion Posted: Mon Nov 24, 2008 9:58 am Subject: 2 Timers (multitasking) . . . |
Hi Ttelmah, first thanks for answer so fast, I'm using a 16F877A,
some suggestion with this.
Regards |
Topic: 2 Timers (multitasking) . . . |
ivan_ult
Replies: 6
Views: 7686
|
Forum: General CCS C Discussion Posted: Mon Nov 24, 2008 9:21 am Subject: 2 Timers (multitasking) . . . |
Hi everyone, I have an application which controls 2 rs232 inputs, I need to read each rx (a "@" character), and send an output in a single pin, with 1 minute duration and after that send the ... |
Topic: RS232 communication |
ivan_ult
Replies: 0
Views: 2614
|
Forum: General CCS C Discussion Posted: Fri Oct 31, 2008 4:06 pm Subject: RS232 communication |
Hi everyone, I've done a simple circuit and program for communicate 3 serial devices (successfully) I've tested with 3 terminal connections sessions and works, however I can't communicate this circui ... |
Topic: Multiple serial communication . . . (newbie) |
ivan_ult
Replies: 9
Views: 9553
|
Forum: General CCS C Discussion Posted: Thu Oct 30, 2008 2:12 pm Subject: Multiple serial communication . . . (newbie) |
First, thanks everybody for answer.
I've solved the issue, a simple program (part of the code)
myloop:
if (kbhit(PC))
{
PC_DATA=fgetc(PC);
... |
Topic: Multiple serial communication . . . (newbie) |
ivan_ult
Replies: 9
Views: 9553
|
Forum: General CCS C Discussion Posted: Wed Oct 29, 2008 2:59 pm Subject: Multiple serial communication . . . (newbie) |
Tranz, thanks for answer, as I've read the getc function waits until a character has come in, what I need is loop the reception of the 3 rcv pins and play with the data, here is part of my code.
#u ... |
Topic: Multiple serial communication . . . (newbie) |
ivan_ult
Replies: 9
Views: 9553
|
Forum: General CCS C Discussion Posted: Wed Oct 29, 2008 1:26 pm Subject: Multiple serial communication . . . (newbie) |
Hi everyone, I need to make an intelligent splitter. What I mean is, I need to connect 3 rs232 interfaces with a PIC (I've chosen the 16F877) and control the data flow.
I try using PICBASIC but I c ... |
|