Author |
Message |
Topic: Problem with interrupts and USB communication - 18F4550 |
Bcox
Replies: 2
Views: 5280
|
Forum: General CCS C Discussion Posted: Mon Nov 03, 2008 9:18 am Subject: Problem with interrupts and USB communication - 18F4550 |
i am using an 18F4550 for several very similar applications. I ran into the same problem that you were having. Here was my problem and solution.
Problem: An external trigger (interrupt) would tell ... |
Topic: 18f4553 touchscreen |
Bcox
Replies: 9
Views: 14236
|
Forum: General CCS C Discussion Posted: Tue Sep 16, 2008 2:16 pm Subject: 18f4553 touchscreen |
Hello,
I am using this exact LCD in a device that is going to production in the next few weeks. I will be happy to help as much as I can. Yes, you can attach the touch screen directly to the PIC. Thi ... |
Topic: USB HID Serial Number |
Bcox
Replies: 4
Views: 7656
|
Forum: General CCS C Discussion Posted: Fri May 30, 2008 6:10 am Subject: USB HID Serial Number |
Hello all,
No one ever replied to this post. i am actually in the same boat as this. I have created an HID device and have the possibility of having multiple of these devices connected to one compute ... |
Topic: [OT] PC programming language survey |
Bcox
Replies: 14
Views: 15233
|
Forum: General CCS C Discussion Posted: Thu May 15, 2008 5:50 am Subject: [OT] PC programming language survey |
Here at my new place of work, I use LabView for all PC programming to communicate with the PIC. It is a quick and easy way to create controls and GUIs without needed knowledge of a programming languag ... |
Topic: USB HID communications problems with some PC |
Bcox
Replies: 6
Views: 7421
|
Forum: General CCS C Discussion Posted: Fri May 09, 2008 6:24 am Subject: USB HID communications problems with some PC |
Hello,
To me this is an interesting problem. I am developing an HID device with the same chip and am making my own application using LabView for the GUI. I have yet to try the system on other compute ... |
Topic: Running code with and without USB Bootloader |
Bcox
Replies: 1
Views: 3468
|
Forum: General CCS C Discussion Posted: Mon May 05, 2008 10:59 am Subject: Problem Solved |
Problem Solved. I had only defined the variable out_data as follows:
char out_data[];
when I should have defined it as (for example):
char out_data[40];
I can now accurately ... |
Topic: Running code with and without USB Bootloader |
Bcox
Replies: 1
Views: 3468
|
Forum: General CCS C Discussion Posted: Mon May 05, 2008 8:29 am Subject: Running code with and without USB Bootloader |
Hello all,
I am a developing a USB HID system using a 18F4550. I have developed a LabView application that communicates with this device with no problems. A new requirement came along that has requir ... |
Topic: universal motor |
Bcox
Replies: 12
Views: 12311
|
Forum: General CCS C Discussion Posted: Tue Mar 04, 2008 9:02 am Subject: universal motor |
For my application, I am just turning a high current solenoid valve on and off. We control the current by varying the duty cycle but it would be the same if you are controlling a motor with PWM. I am ... |
Topic: universal motor |
Bcox
Replies: 12
Views: 12311
|
Forum: General CCS C Discussion Posted: Tue Mar 04, 2008 7:47 am Subject: universal motor |
i am not sure how you would do this using the 16f877. Look into using the build in pwm feature. i am using this feature in another chip but am not trying to adjust phase. You might want to look at usi ... |
Topic: Advanced system control techniques |
Bcox
Replies: 1
Views: 4121
|
Forum: General CCS C Discussion Posted: Fri Feb 08, 2008 3:08 pm Subject: Advanced system control techniques |
I am interested in doing some hobby projects using advanced control systems. Has anyone had any luck designing control systems using neural networks or fuzzy logic on PICs? I have done this purely in ... |
Topic: Looking for touch screen controller |
Bcox
Replies: 4
Views: 6968
|
Forum: General CCS C Discussion Posted: Fri Jan 11, 2008 10:07 am Subject: Looking for touch screen controller |
Thank you for your help and info. It gives me a good starting place. |
Topic: Looking for touch screen controller |
Bcox
Replies: 4
Views: 6968
|
Forum: General CCS C Discussion Posted: Thu Jan 10, 2008 2:57 pm Subject: Looking for touch screen controller |
Hello all,
I have found discussions about this but no luck with code. I am implementing a 128x64 KS0108 glcd with a 4-wire resistive touch screen. I would like to control this directly from the PIC w ... |
Topic: show picture in glcd (k0108) |
Bcox
Replies: 6
Views: 13830
|
Forum: General CCS C Discussion Posted: Fri Jan 04, 2008 7:10 am Subject: show picture in glcd (k0108) |
Here is a function I have created to put into the glcd.c file when using it with a 128x64 KS0108 glcd. The program reads from program memory where I had to store my image (i.e. #ROM 0x1000 = image in ... |
Topic: Large fonts for KS0108 glcd |
Bcox
Replies: 14
Views: 25286
|
Forum: General CCS C Discussion Posted: Mon Oct 29, 2007 5:32 am Subject: Large fonts for KS0108 glcd |
Thanks Octal. If it doesn't work out, no big deal. I spent some time the other day developing my own character set for numbers 0-9 that are 29Wx47H. I should be testing them and developing code this w ... |
Topic: Large fonts for KS0108 glcd |
Bcox
Replies: 14
Views: 25286
|
Forum: General CCS C Discussion Posted: Fri Oct 26, 2007 5:39 am Subject: Large fonts for KS0108 glcd |
I almost forgot...I used the glcd.c driver and added this code to it. You will need to check your chip select signals for your glcd. My chip selects are low active so I needed to modify glcd.c to give ... |
|