Author |
Message |
Topic: Lint |
davekelly
Replies: 0
Views: 2797
|
Forum: General CCS C Discussion Posted: Sun Jul 08, 2012 12:00 am Subject: Lint |
I am looking at using one of the Lint analysis tools for our company code.
Searching through the forums there are a few posts regarding some users which have got it working, but not much detail.
... |
Topic: Stack Underflow |
davekelly
Replies: 1
Views: 2702
|
Forum: General CCS C Discussion Posted: Thu Jul 16, 2009 9:59 am Subject: Stack Underflow |
Reinstalled the compiler, seems ok now. |
Topic: Stack Underflow |
davekelly
Replies: 1
Views: 2702
|
Forum: General CCS C Discussion Posted: Thu Jul 16, 2009 5:44 am Subject: Stack Underflow |
V4.093
I have recently completely reinstalled my Vista PC from scratch, and now having problems with compiling applications.
In the past few days I have created new projects for the 16F648A and ... |
Topic: USB HID Serial Number |
davekelly
Replies: 4
Views: 7659
|
Forum: General CCS C Discussion Posted: Fri May 30, 2008 6:26 am Subject: USB HID Serial Number |
I did actually come up with a solution to this, although I subsequently abandoned HID and went to virtual comms instead.
I am just leaving for the day, but will try to dig out what I did next week ... |
Topic: USB |
davekelly
Replies: 3
Views: 4949
|
Forum: General CCS C Discussion Posted: Tue Jan 08, 2008 6:45 am Subject: Re: Usb example works but... |
Hi
but whenever I stop the program running in the pic (18F4550) the driver loaded in the host win2k machine shuts down
Correct.
The PIC is performing the USB comms, so if you stop it running, ... |
Topic: C sharp and pic usb interfacing in ccs compiler |
davekelly
Replies: 9
Views: 13278
|
Forum: General CCS C Discussion Posted: Wed Nov 14, 2007 10:11 am Subject: C sharp and pic usb interfacing in ccs compiler |
I have just been working on a similar exercise of using USB interfaces instead of serial comms, with c# on the PC side.
The CDC model is by far the easiest as pointed out by meereck.
During debu ... |
Topic: MPLAB crash |
davekelly
Replies: 4
Views: 5423
|
Forum: General CCS C Discussion Posted: Fri Sep 07, 2007 8:06 am Subject: MPLAB crash |
7.62 is much more stable than 7.60, I can run it for hours sometimes with out it crashing.
Hours! I was lucky to get minutes between crashes.
Every time I clicked on an error in the output windo ... |
Topic: MPLAB crash |
davekelly
Replies: 4
Views: 5423
|
Forum: General CCS C Discussion Posted: Fri Sep 07, 2007 3:22 am Subject: Re: MPLAB crash |
Does it depend from CCS compiler or Mplab ?
It appears to be the plugin which causes all of the crashes, and like most others I have also had to revert back to 7.4x to get any work done.
I w ... |
Topic: Unable to Debug |
davekelly
Replies: 3
Views: 3822
|
Forum: General CCS C Discussion Posted: Fri Aug 31, 2007 12:51 am Subject: Unable to Debug |
All ICD's use some resources for ROM (top end of memory), and a few bytes of RAM.
Refer to the manual/help file to find out how much.
It is a trap, however after falling into it and spending hou ... |
Topic: USB HID Serial Number |
davekelly
Replies: 4
Views: 7659
|
Forum: General CCS C Discussion Posted: Thu Aug 30, 2007 10:42 am Subject: USB HID Serial Number |
V3.249, PIC 18F4550
I have a hid application, which is working fine.
My system will use several of these device simultaneously, so I want to use the serial number feature to identify each interf ... |
Topic: MScomm1 with PICC |
davekelly
Replies: 2
Views: 3795
|
Forum: General CCS C Discussion Posted: Wed Mar 28, 2007 7:43 am Subject: Re: MScomm1 with PICC |
if (InByte = 0X02)
{
putc(0x0A);
delay_us (700);
Temp = InByte ; // both are bytes char
... |
Topic: Hex to float |
davekelly
Replies: 17
Views: 19319
|
Forum: General CCS C Discussion Posted: Fri Mar 16, 2007 4:28 am Subject: Re: Delay in conversion |
Hi,
Can i ask how do i find out the time spent in executing this code?
printf("%04.3f",val*1.2207E-3);
I'm doing data acq and I suspect this code is taking too much time to ... |
Topic: Picstart Plus upgrade |
davekelly
Replies: 4
Views: 5795
|
Forum: General CCS C Discussion Posted: Thu Feb 22, 2007 7:57 am Subject: Picstart Plus upgrade |
The Microchip forums are the best place for this query.
R4 is on the cusp of the revision for the PUM working.
Refer to http://forum.microchip.com/tm.aspx?m=228296 |
Topic: event driven programming on MCU |
davekelly
Replies: 5
Views: 6295
|
Forum: General CCS C Discussion Posted: Wed Feb 21, 2007 8:19 am Subject: event driven programming on MCU |
The closest thing to event driven i write is an infinite loop that checks if a certain flag is set to true, and if it is it runs appropriate code.
Thats as complex as I want to go for PICs for even ... |
Topic: FUSES changing |
davekelly
Replies: 1
Views: 3457
|
Forum: General CCS C Discussion Posted: Fri Feb 09, 2007 9:11 am Subject: FUSES changing |
PCM 3.249, 16F88
I have the following configurations in my header:
#define USE_ICD
// Device selection and configuration
#include <16F88.h>
#device ADC=10
#device *=16 // B ... |
|