Author |
Message |
Topic: fw up to date |
mcafzap
Replies: 6
Views: 51821
|
Forum: CCS ICD / Mach X / Load-n-Go Posted: Tue Nov 09, 2010 2:17 pm Subject: fw up to date |
Over a month later and no solution although things appear to work OK despite it. |
Topic: Output current limitation ? |
mcafzap
Replies: 8
Views: 7342
|
Forum: General CCS C Discussion Posted: Sun Dec 16, 2007 1:52 pm Subject: Output current limitation ? |
Have a look at http://www.zetex.com/3.0/pdf/ZXTP25015DFH.pdf
There are several other very low Vcesat devices on this site, all of which have a reasonable gain meaning you don't need much current to ... |
Topic: Anyone Used Siemens TC35I GSM Module? |
mcafzap
Replies: 2
Views: 3579
|
Forum: General CCS C Discussion Posted: Wed May 30, 2007 1:43 am Subject: Anyone Used Siemens TC35I GSM Module? |
Don't know if this will help you, as I've not used the TC35i, but we did use its forerunner, the TC35.
We had difficulty obtaining the flexible connector so we had some very thin pcbs made which fit ... |
Topic: Version 4 Comments |
mcafzap
Replies: 270
Views: 413001
|
Forum: General CCS C Discussion Posted: Fri Jan 26, 2007 3:28 pm Subject: Version 4 Comments |
This smacks of censorship which I find most objectionable. You may remove this message as you choose. In any event I will not be purchasing your wonderful new version for some considerable time, if ev ... |
Topic: Interrupt problem |
mcafzap
Replies: 14
Views: 16726
|
Forum: General CCS C Discussion Posted: Fri Jan 13, 2006 9:51 am Subject: Interrupt problem |
In 'C'strings are ended with '\0' otherwise the various functions would need to know the length of the strings.
To add this to your code you could add this line (untested) :
existing interrupt ... |
Topic: Crystal Problems - OT |
mcafzap
Replies: 12
Views: 18152
|
Forum: General CCS C Discussion Posted: Sat Jan 07, 2006 1:01 pm Subject: Crystal Problems - OT |
Worth reminding you that 'scope probes have associated capacitance too. I can no longer read mine, but I seem to remember 1M//20pf Sorry I can't recall the 10:1 type's impedance. |
Topic: play songs on a peizo buzzer? |
mcafzap
Replies: 17
Views: 33283
|
Forum: General CCS C Discussion Posted: Fri Dec 23, 2005 7:11 am Subject: play songs on a peizo buzzer? |
To avoid RMW problems on the I/O ports, here is my buzzer routine:
void shortbeep(void)
{
int8 t;
t = Port_A & 0xCF;
for(j=0; j<=250;j++)
{
Port_A = t | 0x20; ... |
Topic: I've written a monster! help with interrupts and globals |
mcafzap
Replies: 14
Views: 17029
|
Forum: General CCS C Discussion Posted: Mon Nov 14, 2005 12:27 pm Subject: I've written a monster! help with interrupts and globals |
http://www.ccsinfo.com/forum/viewtopic.php?p=27666
shows how. |
Topic: Low power relay |
mcafzap
Replies: 6
Views: 8548
|
Forum: General CCS C Discussion Posted: Mon Oct 03, 2005 3:44 pm Subject: Low power relay |
In the past I have used small latching relays from Farnell in the UK, NAIS TF2-L2-5V Being latching, they are extremely low power. Although they required a 1mS pulse at 5V I found I could use them a ... |
Topic: Please help, what am I doing wrong. |
mcafzap
Replies: 6
Views: 7344
|
Forum: General CCS C Discussion Posted: Mon Oct 03, 2005 12:50 pm Subject: Please help, what am I doing wrong. |
Yes, the ICDU40 works as a good debugger if you use it with PCWH. I believe you can load it with code to have it behave like an ICD 2.
I still have a Microchip ICD 2 and this is the cheapest way to ... |
Topic: 10F206 comparator with int voltage reference not working?? |
mcafzap
Replies: 2
Views: 5142
|
Forum: General CCS C Discussion Posted: Fri Sep 23, 2005 6:23 am Subject: 10F206 comparator with int voltage reference not working?? |
Has anyone successfully used the 10F206 comparator using the internal voltage reference (0.6V) as the negative reference for the comparator?
Without referring to the datasheet, here is a section of m ... |
Topic: what is the maximum eeprom available in the market? |
mcafzap
Replies: 10
Views: 11305
|
Forum: General CCS C Discussion Posted: Fri Aug 19, 2005 9:00 am Subject: what is the maximum eeprom available in the market? |
Microchip does a 512K byte device, the part number escapes me.
Do you really need EEPROM? If you don't need to write 100,000's of times, there are much bigger flash parts, but from your question I ... |
Topic: can watch dog wake up a processor during sleep? |
mcafzap
Replies: 11
Views: 13363
|
Forum: General CCS C Discussion Posted: Wed Jul 27, 2005 2:33 pm Subject: can watch dog wake up a processor during sleep? |
This is easy provided you bear in mind the different behaviours of the various devices.
This is not a complete working program for all the usual reasons - I've had to edit it down to a minimum. It ... |
Topic: Sending blocks of data over RS-232 |
mcafzap
Replies: 15
Views: 19473
|
Forum: General CCS C Discussion Posted: Wed Jul 27, 2005 9:01 am Subject: Sending blocks of data over RS-232 |
For a really simple 'protocol' just send the data when it's requested by the receiving program. If you always send the same number of bytes, there's no need to indicate the end, just guard against wai ... |
Topic: [OT] GPS modules / OEM boards -- where to buy? |
mcafzap
Replies: 6
Views: 9620
|
Forum: General CCS C Discussion Posted: Tue Apr 26, 2005 3:39 pm Subject: [OT] GPS modules / OEM boards -- where to buy? |
FYI there is also www.falcom.de they also have GPS with GSM/GPRS engines too.
Something to watch if you're after the highest possible accuracy is that the first positions found (from a cold start) ... |
|