Author |
Message |
Topic: signed long array behaving as a long array [SOLVED] |
cmesparza
Replies: 4
Views: 5734
|
Forum: General CCS C Discussion Posted: Tue Jan 17, 2012 1:40 pm Subject: signed long array behaving as a long array [SOLVED] |
You were all right, I was looking at the value of the variable, not to the decimal value.
The program works perfectly, I wasn't thinking in the 2's complement...
Thanks! |
Topic: signed long array behaving as a long array [SOLVED] |
cmesparza
Replies: 4
Views: 5734
|
Forum: General CCS C Discussion Posted: Tue Jan 17, 2012 11:00 am Subject: signed long array behaving as a long array [SOLVED] |
Hi everyone,
I'm having an issue with a "signed long array" declared as a global variable.
signed long U[4]={0,0,0,0};
long lambda[25][2];
... |
Topic: PIC18F27J53 second UART not working [SOLVED] |
cmesparza
Replies: 2
Views: 12255
|
Forum: General CCS C Discussion Posted: Wed Jan 04, 2012 4:16 am Subject: SOLVED! |
Thank you so much, is working now!
I didn't know anything about #pin_select directive...
just changing:
#PIN_SELECT RX2=PIN_B0
#PIN_SELECT TX2=PIN_B1
#use rs232(UART1,baud=460800,pari ... |
Topic: PIC18F27J53 second UART not working [SOLVED] |
cmesparza
Replies: 2
Views: 12255
|
Forum: General CCS C Discussion Posted: Tue Jan 03, 2012 6:14 pm Subject: PIC18F27J53 second UART not working [SOLVED] |
Hi everyone,
I write because I'm having some problems in a project involving two UARTs.
One of it is for bluetooth communications (already working) and the other one is to communicate with another ... |
|