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 CCS Technical Support

Search found 22 matches
CCS Forum Index
Author Message
  Topic: Interrupt problem with PIC16F628 interfaced with GM862-PCS..
aldinlapinig

Replies: 1
Views: 3739

PostForum: General CCS C Discussion   Posted: Sun Mar 23, 2008 10:48 pm   Subject: Interrupt problem with PIC16F628 interfaced with GM862-PCS..
Hi Everybody!

I wanted to interface GM862-PCS with PIC16F628 through RS232. The program that I researched and made seemed to work perfectly during my simulation with Proteus through Virtual serial ...
  Topic: PIC16F628A Interface with Nokia 3220...
aldinlapinig

Replies: 0
Views: 3029

PostForum: General CCS C Discussion   Posted: Mon Nov 19, 2007 6:22 am   Subject: PIC16F628A Interface with Nokia 3220...
Hi all,

Anybody here tried to interface Nokia 3220 with PIC? I need help in making the communication between the phone the microcontroller. Or any good source regarding the topic? Thank you in adva ...
  Topic: EX_FREQC question....
aldinlapinig

Replies: 4
Views: 6021

PostForum: General CCS C Discussion   Posted: Tue Aug 14, 2007 8:52 am   Subject: EX_FREQC question....
thank you PCM Programmer...I just couldn't understand how it configured pin C0 as output. I'm doing a project now that measures the frequency from 8 inputs. Can I use the same program to do this? How ...
  Topic: EX_FREQC question....
aldinlapinig

Replies: 4
Views: 6021

PostForum: General CCS C Discussion   Posted: Mon Aug 13, 2007 7:10 pm   Subject: EX_FREQC question....
I've looked at the EX_FREQC example of CCS C compiler but I couldn't understand what pin is used as input of the frequency being measured. Anybody knows this? Thank you.
  Topic: serial comm problem...
aldinlapinig

Replies: 2
Views: 4682

PostForum: General CCS C Discussion   Posted: Mon Jul 16, 2007 1:13 pm   Subject: serial comm problem...
what's wrong?


#include <16F628A.h>
#fuses HS, NOWDT, BROWNOUT, PUT, NOLVP
#use delay(clock=20000000)
#use rs232(baud=115200, xmit=PIN_B2, rcv=PIN_B1)

#int_rda
void rd ...
  Topic: Assigning values to an array...
aldinlapinig

Replies: 3
Views: 5015

PostForum: General CCS C Discussion   Posted: Sun Jul 08, 2007 6:09 am   Subject: Thanx...
thank you very much PCM programmer. i looked at the link that you gave me but is there another way of assigning values to the array without declaring another array as constant? My purpose is to save R ...
  Topic: Assigning values to an array...
aldinlapinig

Replies: 3
Views: 5015

PostForum: General CCS C Discussion   Posted: Sat Jul 07, 2007 7:42 pm   Subject: Assigning values to an array...
Hi all,

how can u assign hex values to an array?

is the ff. code valid?

int myArray[30];

myArray = 0x01,0x02,0x03,0x04 ... 0x1E;


how do u do it?

thanx...

Smile
  Topic: printf with array problem...need help...
aldinlapinig

Replies: 2
Views: 3921

PostForum: General CCS C Discussion   Posted: Sat Jul 07, 2007 7:01 pm   Subject: THANK YOU SO MUCH...
IC...IC... Thank you very much for the help... didn't think 'bout that...

Cheers!!!

Smile


-=alDin=-
  Topic: printf with array problem...need help...
aldinlapinig

Replies: 2
Views: 3921

PostForum: General CCS C Discussion   Posted: Sat Jul 07, 2007 6:23 pm   Subject: printf with array problem...need help...
Hi all,

I used to get it right but now I can't... printf-ing an array out to the PIC's TX pin @ 115200 baud rate...

int COMMAND[18] = {0xC1,0x1E,0x00,0x0C,0xD1,0x00,0x07,0x00,0x01,0 ...
  Topic: GSM with PIC interface Help needed!!!
aldinlapinig

Replies: 1
Views: 4815

PostForum: General CCS C Discussion   Posted: Tue Aug 08, 2006 2:33 am   Subject: GSM with PIC interface Help needed!!!
Hello all,

I am developing a program that will interface a GSM module with PIC through RS232. Can anybody who have tried doing this give me an idea on how I could analyze the reponse from the GSM m ...
  Topic: CRC_XMODEM
aldinlapinig

Replies: 1
Views: 4462

PostForum: General CCS C Discussion   Posted: Tue Mar 21, 2006 8:30 pm   Subject: CRC_XMODEM
hi all,

anybody have any idea on how to generate the CRC-XMODEM checksum using CCS C? I'm trying to interface an RFID reader module (TI product) with 18f877a. They'r using CRC-XMODEM algorithm (pol ...
  Topic: Determining Pulse Width with 18f84
aldinlapinig

Replies: 4
Views: 7090

PostForum: General CCS C Discussion   Posted: Sat Mar 18, 2006 8:29 pm   Subject: crc_xmodem...
thanx for the immediate response man.. It'll help a lot. I wud like to ask u again. do u have any idea on how to generate the CRC-XMODEM checksum? I'm trying to interface an RFID reader module (TI pro ...
  Topic: Determining Pulse Width with 18f84
aldinlapinig

Replies: 4
Views: 7090

PostForum: General CCS C Discussion   Posted: Thu Mar 16, 2006 8:07 pm   Subject: Determining Pulse Width with 18f84
Hi everyone,

I want to determine the Pulse Width of a signal from a modulator to the PIC. Can anybody give me an idea on how I could do it with 18f84? Thank u so much...

kind regards,

-=alDin ...
  Topic: keypad not working properly after sometime...
aldinlapinig

Replies: 2
Views: 4620

PostForum: General CCS C Discussion   Posted: Fri Feb 17, 2006 9:45 pm   Subject: how to solve for debounce factor?
how can i solve for the debounce factor?

here's a part of my code:



.
.
.
in_count = 0;
lcd_putc("\f");

while(1) {
k = kbd_getc();
...
  Topic: keypad not working properly after sometime...
aldinlapinig

Replies: 2
Views: 4620

PostForum: General CCS C Discussion   Posted: Sat Feb 11, 2006 8:15 pm   Subject: keypad not working properly after sometime...
hi,

i'm using KBD.C driver of the CCS C compiler to drive a 3x4 keypad. At first, it was working fine. But after some time of editing and adding codes, the keypad doesn't work reliably already. For ...
 
Page 1 of 2 Goto page 1, 2  Next
All times are GMT - 6 Hours
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group