Author |
Message |
Topic: dsPIC33FJ I/O ports problems [solved] |
mabd
Replies: 1
Views: 3390
|
Forum: General CCS C Discussion Posted: Wed Jul 13, 2011 7:11 am Subject: Solved |
I've solved the problem.
Pin C15 not works because Fuses are wrong.
Pins G6-7-8 not works because with CCS SPI functions the SPI can't disable it. It's necessary to modify spi registers directly ... |
Topic: dsPIC33FJ I/O ports problems [solved] |
mabd
Replies: 1
Views: 3390
|
Forum: General CCS C Discussion Posted: Wed Jul 13, 2011 5:25 am Subject: dsPIC33FJ I/O ports problems [solved] |
I'm using a dsPIC33FJ128GP706 and I use several pins like outputs. Pins C15, G6, G7 and G8 not works ok.
I configure them with TRIS C and G these pins like outputs.
I try to put high with output ... |
Topic: dsPIC33F I/O pin (CCS bug?) |
mabd
Replies: 0
Views: 2809
|
Forum: General CCS C Discussion Posted: Thu Oct 21, 2010 4:00 am Subject: dsPIC33F I/O pin (CCS bug?) |
Hello everybody,
I'm working with dsPIC33FJ256MC710, the "explorer16 development board" and CCS compiler v4.110. I have a problem with G8 pin. When I try to set this pin as an input and I ... |
Topic: Dynamic bidimensional array with malloc |
mabd
Replies: 0
Views: 2820
|
Forum: General CCS C Discussion Posted: Tue Feb 03, 2009 10:43 am Subject: Dynamic bidimensional array with malloc |
I need a dynamic bidimensional array and I use this code:
typedef char* charp;
charp *buffer;
void main() {
buffer=(charp *)malloc(4);
bufferbuffer
}
The compiler returns this error ... |
Topic: Unix time |
mabd
Replies: 5
Views: 6578
|
Forum: General CCS C Discussion Posted: Wed Jan 14, 2009 4:29 am Subject: unix time |
Gps date:
In the GPRMC Gps NMEA sentence we have the date:
6 characters: 131009 (day/month/year)
And in the GPGGA we have the hour:
6 characters: 110515 (hour/minute/second)
Then I crea ... |
Topic: Unix time |
mabd
Replies: 5
Views: 6578
|
Forum: General CCS C Discussion Posted: Wed Jan 14, 2009 1:46 am Subject: Unix time |
When I search this topic appear this messsage:
No topics or posts met your search criteria
It's necessary to Search for any terms or use query as entered
http://www.ccsinfo.com/forum/viewtopi ... |
Topic: Unix time |
mabd
Replies: 5
Views: 6578
|
Forum: General CCS C Discussion Posted: Tue Jan 13, 2009 11:09 am Subject: Unix time |
Does CCS have any built-in functions to convert a gps dato to Unix time?
Thanks |
Topic: Web server via GPRS |
mabd
Replies: 1
Views: 5532
|
Forum: General CCS C Discussion Posted: Mon Jan 24, 2005 4:40 am Subject: Web server via GPRS |
Hello
I'm trying to do a web page in my pic18f458 and be able to browse it from internet. I want to connect the device to internet using a GPRS modem.
There is a CCS sample named ex_websv but it ... |
|