Author |
Message |
Topic: 24x12 matrix bicolor LEDs |
VernonAMiller
Replies: 62
Views: 82854
|
Forum: General CCS C Discussion Posted: Wed Nov 26, 2014 5:02 pm Subject: 24x12 matrix bicolor LEDs |
The problem with learning about a cool chip like the LT8500, is that now I have YET ANOTHER project idea in my head! And I already have more than I can do! |
Topic: Ctrl-C and Ctrl-V don't work? Why? |
VernonAMiller
Replies: 4
Views: 6847
|
Forum: General CCS C Discussion Posted: Wed Nov 26, 2014 6:28 am Subject: Ctrl-C and Ctrl-V don't work? Why? |
Weird, I use it all the time... never had an issue with it since v4.
Same here. |
Topic: 24x12 matrix bicolor LEDs |
VernonAMiller
Replies: 62
Views: 82854
|
Forum: General CCS C Discussion Posted: Tue Nov 25, 2014 2:34 pm Subject: 24x12 matrix bicolor LEDs |
At this point, it doesn't really matter how many LED rows/columns/panels are being driven or what they are being used for. There's a lot of good information and ideas in this thread giving several ap ... |
Topic: 24x12 matrix bicolor LEDs |
VernonAMiller
Replies: 62
Views: 82854
|
Forum: General CCS C Discussion Posted: Fri Nov 21, 2014 3:39 am Subject: 24x12 matrix bicolor LEDs |
The great thing about the 74HC595 is that it has separate shift and output registers; so, you can shift the data in at your leisure, and then transfer it to the output registers in one atomic operatio ... |
Topic: Long timer times |
VernonAMiller
Replies: 6
Views: 9837
|
Forum: General CCS C Discussion Posted: Fri Nov 07, 2014 12:37 pm Subject: Long timer times |
Good point, thanks!
VAM |
Topic: Long timer times |
VernonAMiller
Replies: 6
Views: 9837
|
Forum: General CCS C Discussion Posted: Fri Nov 07, 2014 11:48 am Subject: Re: Long timer times |
Or should I setup the timer with a tick of maybe 1 second, and use an ISR to increment a 16bit counter and check it to see if it's over XX(seconds) and if so clear it and send the status message ?
... |
Topic: (Solved) USB_HID_REQUEST_SET_REPORT implementation |
VernonAMiller
Replies: 7
Views: 11242
|
Forum: General CCS C Discussion Posted: Wed Nov 05, 2014 8:40 am Subject: (Solved) USB_HID_REQUEST_SET_REPORT implementation |
The correct order is just to include the USB files in the same way as shown as in the examples and NOT to remove #includes within driver files
Cool. Thanks!
VAM |
Topic: (Solved) USB_HID_REQUEST_SET_REPORT implementation |
VernonAMiller
Replies: 7
Views: 11242
|
Forum: General CCS C Discussion Posted: Wed Nov 05, 2014 8:07 am Subject: (Solved) USB_HID_REQUEST_SET_REPORT implementation |
If it's a mistake you think one of us might make, please let us know the correct order so we can not make it
Thanks!
VAM |
Topic: Please a Driver for SANYO LC7942 GLCD. |
VernonAMiller
Replies: 7
Views: 11455
|
Forum: General CCS C Discussion Posted: Fri Oct 31, 2014 10:37 am Subject: Please a Driver for SANYO LC7942 GLCD. |
[Post removed by author because it's been superseded by the info in the post from asmboy that follows it.]
VAM |
Topic: Varying Battery Loads |
VernonAMiller
Replies: 8
Views: 10808
|
Forum: General CCS C Discussion Posted: Wed Oct 29, 2014 1:52 pm Subject: Varying Battery Loads |
You are right that most solutions center on rechargeable cells. However, I know that Maxim and TI both make solutions for alkaline cells as well.
Check this link at Maxim:
http://datasheets.max ... |
Topic: Varying Battery Loads |
VernonAMiller
Replies: 8
Views: 10808
|
Forum: General CCS C Discussion Posted: Wed Oct 29, 2014 11:29 am Subject: Varying Battery Loads |
I agree with RF_Developer about the battery monitoring chip. That's the way to go. All of the projects I've worked on for the past 15 years or so have had a battery-backed cache of some sort, and we ... |
Topic: Most powerful pic that PCWHD support.. |
VernonAMiller
Replies: 20
Views: 22714
|
Forum: General CCS C Discussion Posted: Tue Oct 28, 2014 7:36 pm Subject: Most powerful pic that PCWHD support.. |
I could live with 3.3v operation pic24/dspic33 but 4-5 ma per pin average won't cut it even for a led!
I usually use a ULN20xx/ULN28xx chip to drive devices that are mounted external to the circuit ... |
Topic: Most powerful pic that PCWHD support.. |
VernonAMiller
Replies: 20
Views: 22714
|
Forum: General CCS C Discussion Posted: Tue Oct 28, 2014 11:20 am Subject: Most powerful pic that PCWHD support.. |
As others have already said, it's tough for me to think of PIC32 as a PIC at all. If I ever need to move to something 32-bit, I will look at the ARM chips first. They are just a lot more widely supp ... |
Topic: Examine interrupt status |
VernonAMiller
Replies: 5
Views: 6977
|
Forum: General CCS C Discussion Posted: Sat Oct 25, 2014 4:11 pm Subject: Examine interrupt status |
Or do it the easy way...
Look on page 56 of the current CCS manual under Interrupts.
There you will find Interrupt_Enabled()
DOH! Forgot about that one. That's what I get for answering in a hu ... |
Topic: Examine interrupt status |
VernonAMiller
Replies: 5
Views: 6977
|
Forum: General CCS C Discussion Posted: Sat Oct 25, 2014 5:36 am Subject: Re: Examine interrupt status |
Hello All,
How can I examine is interrupt is enable or disable?
I use enable_interrupts(INT_TIMER1);, disable_interrupts(INT_TIMER1); to activate or deactivate it but I'd like to check is it on or ... |
|