Author |
Message |
Topic: Code protection with MPLAB 7.60 and CCS 4.064 |
Sergio
Replies: 9
Views: 8522
|
Forum: General CCS C Discussion Posted: Tue Apr 14, 2009 12:35 pm Subject: Code protection with MPLAB 7.60 and CCS 4.064 |
Hi Libor:
I'm real curious what you are using the ENIAC clone for and why. |
Topic: Question about reverse engineering on main.hex |
Sergio
Replies: 10
Views: 11758
|
Forum: General CCS C Discussion Posted: Fri Apr 10, 2009 11:23 pm Subject: Question about reverse engineering on main.hex |
It would be very hard but not impossible.
On the other hand why would they want to do that? They just paid you to create the program.
BTW, unless you specified in the contract, if they pay you ... |
Topic: PCM programmer 10,000 posts |
Sergio
Replies: 21
Views: 17626
|
Forum: General CCS C Discussion Posted: Thu Feb 19, 2009 10:06 pm Subject: PCM programmer 10,000 posts |
It's not so much the quantity of the messages but the quality.
Thanks PCM. You've made quite a difference to this forum. |
Topic: A simple way to make datalogging in the kilobyte range. |
Sergio
Replies: 15
Views: 16371
|
Forum: General CCS C Discussion Posted: Thu Oct 30, 2008 7:45 pm Subject: A simple way to make datalogging in the kilobyte range. |
I've used the M25P64 without any problems.
At 64 Mbits it should fit your application well. It's got an SPI interface so it's pretty much ready to go when you get it.
Watch out for chip erasure ... |
Topic: OT: preferences/toughness: BJT vs FET |
Sergio
Replies: 14
Views: 27415
|
Forum: General CCS C Discussion Posted: Tue May 23, 2006 12:04 am Subject: OT: preferences/toughness: BJT vs FET |
BJT
Though for your aplication I'd use a ULN2003.
Cheers |
Topic: Voice/sound recognition |
Sergio
Replies: 15
Views: 32884
|
Forum: General CCS C Discussion Posted: Tue Sep 21, 2004 9:05 pm Subject: Voice/sound recognition |
John,
I was also looking at the Sensory chip for an upcoming project. Have you played around with it yet? |
Topic: Graphic LCD suggestions - off topic |
Sergio
Replies: 9
Views: 18154
|
Forum: General CCS C Discussion Posted: Tue Jul 13, 2004 10:23 pm Subject: Graphic LCD suggestions - off topic |
Don't know what your budget is but I did a medical project with this product:
http://www.amulettechnologies.com/
It required multiple menus and graphics. Am pretty satisfied. |
Topic: conflict between int_rda and spi, how to stop int_rda? |
Sergio
Replies: 3
Views: 9520
|
Forum: General CCS C Discussion Posted: Fri Jun 18, 2004 7:30 pm Subject: conflict between int_rda and spi, how to stop int_rda? |
This is what I do...
To stop:
bit_clear(RCSTA, 7) //Serial port disabled
To re-start;
bit_set(RCSTA, 7); // Serial port enabled
bit_clear(RCSTA, 4); // By clearing CREN you clear overrun ... |
Topic: problems with high baud rates and #use rs232 |
Sergio
Replies: 4
Views: 13012
|
Forum: General CCS C Discussion Posted: Thu Jun 10, 2004 10:31 pm Subject: problems with high baud rates and #use rs232 |
I am using a software interrupt at 115200 baud (20Mhz xtal) without any problems. I did discover that kbhit was too slow for those speeds. Instead I rolled up a simpler one that just keeps looking i ... |
Topic: Washing machine |
Sergio
Replies: 9
Views: 13485
|
Forum: General CCS C Discussion Posted: Sat Apr 17, 2004 10:30 pm Subject: Washing machine |
Is this a new or existing product?
Has it ever worked correctly?
When did it start having this problem?
What do you mean "skips code lines"? |
Topic: PIC Magazine Subscription? |
Sergio
Replies: 3
Views: 16742
|
Forum: General CCS C Discussion Posted: Tue Feb 03, 2004 11:40 pm Subject: PIC Magazine Subscription? |
Circuit Cellar is THE required subscription for serious embedded designers.
It's been the source of design inspiration for all my designs these last 10 years or so. I've kept all of them and lea ... |
|