Author |
Message |
Topic: Serial algorithm with interrupts |
specialk
Replies: 9
Views: 9217
|
Forum: General CCS C Discussion Posted: Mon Aug 28, 2006 2:19 pm Subject: Serial algorithm with interrupts |
Obviously there is no 0ms write time but to the application there would be. The part writes at the bus speed so you can in essence write the data as fast as the bus speed without any need to delay. ... |
Topic: Serial algorithm with interrupts |
specialk
Replies: 9
Views: 9217
|
Forum: General CCS C Discussion Posted: Sun Aug 27, 2006 8:15 pm Subject: Serial algorithm with interrupts |
Nope, it is not the same. A FRAM has a program cycle time of 0ms.
There is no such thing as a program cycle time of 0ms. Looking at a popular manufacturer (Ramtron), their parallel FRAM modules hav ... |
Topic: Laipac RF-24G / TXRX24G 2.4GHz Wireless Transceiver Driver |
specialk
Replies: 2
Views: 46736
|
Forum: Code Library Posted: Fri Aug 18, 2006 11:01 am Subject: Laipac RF-24G / TXRX24G 2.4GHz Wireless Transceiver Driver |
Here's a slightly modified and updated version:
////////////////////////////////////////////////////////////////////////////////
// Laipac RF-24G / TXRX24G
// ... |
Topic: TRF2.4 (Nordic NRF2401) Driver |
specialk
Replies: 1
Views: 34283
|
Forum: Code Library Posted: Fri Aug 18, 2006 10:59 am Subject: TRF2.4 (Nordic NRF2401) Driver |
I posted an RF-24G driver a couple of months ago that includes multiple byte payloads and allows for simple configuration settings changes:
http://www.ccsinfo.com/forum/viewtopic.php?t=25745
-sp ... |
Topic: GLCD problem - See Photo |
specialk
Replies: 5
Views: 6747
|
Forum: General CCS C Discussion Posted: Thu Aug 10, 2006 1:51 am Subject: GLCD problem - See Photo |
Looks like your chip select lines are reversed. Try changing CS1 and CS2 either in software or by swaping the lines physically.
-special [k] |
Topic: GLCD Smaller Font |
specialk
Replies: 2
Views: 5173
|
Forum: General CCS C Discussion Posted: Tue Aug 08, 2006 11:05 am Subject: GLCD Smaller Font |
I actually just whipped up my own font based upon the format presented here: http://instruct1.cit.cornell.edu/courses/ee476/video/Video32v2.c It is a drop in replacement for glcd_text57 called glcd_t ... |
Topic: GLCD Smaller Font |
specialk
Replies: 2
Views: 5173
|
Forum: General CCS C Discussion Posted: Tue Aug 08, 2006 9:17 am Subject: GLCD Smaller Font |
Hey All,
I've been working with a graphical LCD and tinkering with the GLCD.c driver. Is anyone familar with a smaller font (like 3x5 or 4x6) that can be easily integrated with the GLCD driver? T ... |
Topic: Communication between 2 PICs using BlueTooth? |
specialk
Replies: 1
Views: 4672
|
Forum: General CCS C Discussion Posted: Wed May 03, 2006 2:53 pm Subject: Re: Communication between 2 PICs using BlueTooth? |
However, nothing is being received.
Can someone please tell me:
(a) if I can use printf command for serial communication?
(b) how to find out the factory settings on the BlueSMiRF?
(c) how to re ... |
Topic: printf during interrupt |
specialk
Replies: 3
Views: 8148
|
Forum: General CCS C Discussion Posted: Thu Feb 23, 2006 5:39 pm Subject: printf during interrupt |
disable_interrupts(global); // THIS IS NOT NEEDED
enable_interrupts(global); // THIS WILL CRASH THE PROGRAMWhy are you suggesting he remove either of these? I use both of them all of the ti ... |
Topic: Strange H4 on 18F6722 |
specialk
Replies: 7
Views: 7712
|
Forum: General CCS C Discussion Posted: Sat Feb 04, 2006 6:36 pm Subject: Strange H4 on 18F6722 |
How to use Internal RC*4 ????????????See section 2.4.2 of the 18F6722 datasheet. |
Topic: My PIC often won't run all the code I have written... |
specialk
Replies: 13
Views: 13998
|
Forum: General CCS C Discussion Posted: Sat Feb 04, 2006 11:54 am Subject: My PIC often won't run all the code I have written... |
Have you checked your while loop in the function?
do{
old=x;
x=x-((a*x*x) + b*x + c)/( 2*a*x + b);
}while(abs((x-old)/x*100) ... |
Topic: Waterproffing DS18B20 |
specialk
Replies: 10
Views: 14692
|
Forum: General CCS C Discussion Posted: Tue Jan 31, 2006 10:50 pm Subject: Waterproffing DS18B20 |
Wires were soldered onto the legs of the chip, then heatshrunk.Were they just heatshrunk or did you use adhesive-lined waterproof heatshrink?
-special [k] |
Topic: How to test multiple software uart on only 1 PIC chip |
specialk
Replies: 4
Views: 8463
|
Forum: General CCS C Discussion Posted: Sat Jan 28, 2006 1:15 pm Subject: Re: multiple software uart on pic -> possible? |
Please let me know if I still miss something
You are missing the fact that the software RS232 code can not receive data unless the microcontroller is actively looking for it during the getc routine. ... |
Topic: Flexible LCD driver |
specialk
Replies: 102
Views: 1046383
|
Forum: Code Library Posted: Wed Jan 25, 2006 6:53 pm Subject: Flexible LCD driver |
Just change this:
void lcd_gotoxy(int8 x, int8 y)
{
int8 address;
if(y != 1)
address = lcd_line_two;
else
address=0;
address += x-1;
lcd_send_byte(0, 0x80 | ... |
Topic: Data transfer and protocols |
specialk
Replies: 8
Views: 11382
|
Forum: General CCS C Discussion Posted: Tue Jan 24, 2006 12:52 pm Subject: Data transfer and protocols |
I checked here http://www.electro-tech-online.com/viewforum.php?f=5 and found a link to http://www.radiometrix.co.uk/, which has a number of transmitters, receivers, and transceivers that can have 100 ... |
|