Author |
Message |
Topic: USB mass storage with PIC18F4550 |
JohnLeung
Replies: 12
Views: 23523
|
Forum: General CCS C Discussion Posted: Fri Jul 28, 2006 2:43 am Subject: USB Mass Storage |
No, I didn't mean CCS.
I meant C18 complier.
John |
Topic: USB mass storage with PIC18F4550 |
JohnLeung
Replies: 12
Views: 23523
|
Forum: General CCS C Discussion Posted: Thu Jul 27, 2006 11:49 am Subject: Implementation of a Mass USB Storage (Microchip AN1003) |
Yes, I did on a home-grown PCB with 18LF4550, 3.3V Vdd. SD card is a 64MB SD card. Complier is C18 version 2.40. That SD card has some jpeg for my digital camera. With that home-grown PCB with SD sock ... |
Topic: t6963c LCD + 16F877a |
JohnLeung
Replies: 14
Views: 119776
|
Forum: Code Library Posted: Sat Jun 03, 2006 9:56 am Subject: Use ram in t6963c for storing ADC data |
I think it is possible to use that ram in t6963c for storage purpose. However, just make sure the speed is fast enough and you are not panning to the ram space that has been allocated for storing the ... |
Topic: t6963c LCD + 16F877a |
JohnLeung
Replies: 14
Views: 119776
|
Forum: Code Library Posted: Wed Apr 12, 2006 8:14 pm Subject: Draw line routines |
As long as you can draw a single pixel, it is possible to draw lines, circles etc. Visit Jharbour's web site on GBA programming
http://www.jharbour.com/gameboy/default.aspx.
Download Chapter 5 a ... |
Topic: Display Keyboard connection |
JohnLeung
Replies: 2
Views: 7410
|
Forum: General CCS C Discussion Posted: Fri Mar 24, 2006 8:28 am Subject: Communication between two PICs |
Hi
In the past I have completed several products similar to what you have described. A keypad with 4x4 keyad and a 20x4 LCD panel as the control console, the other side is a 4" 3-digit 7 segment di ... |
Topic: t6963c LCD + 16F877a |
JohnLeung
Replies: 14
Views: 119776
|
Forum: Code Library Posted: Tue Jan 31, 2006 9:56 am Subject: FastLCD |
It is FastLCD designer by Bojan I. MICRODESIGN, version 1.2.0.
Search the web. You will find its link for download.
John Leung |
Topic: reading keypad input |
JohnLeung
Replies: 3
Views: 6430
|
Forum: General CCS C Discussion Posted: Fri Jan 20, 2006 9:12 pm Subject: Store keys |
May try the followings:
char FreeHandNum[3]={0x20,0x20,0x20}; //initialize to empty space
..
..
main (){
char kchar
...
kchar=kbd_getc( );
//remember to adjust the debounce ... |
Topic: RBport on change interrupt problem |
JohnLeung
Replies: 2
Views: 5580
|
Forum: General CCS C Discussion Posted: Fri Jan 20, 2006 8:56 pm Subject: Interrupt on-change on RB port |
Try putting a small delay to "debounce" after wake up to avoid any noisy problem for RB on-change port, even though you have pull-up for PORTB. |
Topic: As to connect pic to the connector mini din (ps/2) |
JohnLeung
Replies: 4
Views: 67817
|
Forum: Code Library Posted: Mon Jan 16, 2006 7:43 pm Subject: PS/2 keypad driver with buffer |
I have a PS/2 keypad driver along with an example to work with. Not sure if it works for PS/2 mouse, hope it will be helpful for you / somebody.
For more detailed description and PS/2 keypad-relate ... |
Topic: t6963c LCD + 16F877a |
JohnLeung
Replies: 14
Views: 119776
|
Forum: Code Library Posted: Sun Jan 15, 2006 2:28 pm Subject: t6963c + 16F877a |
Under the download section |
Topic: help RTOS |
JohnLeung
Replies: 3
Views: 6709
|
Forum: General CCS C Discussion Posted: Sun Jan 15, 2006 10:28 am Subject: RTOS for PIC |
You may try looking at:
1. www.freertos.org for PIC18 series RTOS. It's a free RTOS!
2. www.micrium.com for PIC18 as well. Both of them use C18 complier.
For PIC16 RTOS, http://www.pumpkininc.c ... |
Topic: Need a sample code to drive a SAA1064 |
JohnLeung
Replies: 5
Views: 15404
|
Forum: General CCS C Discussion Posted: Sun Jan 15, 2006 10:21 am Subject: Driving 4 7-segment by PIC itself |
Hi [spam]
Since you've already got the SAA1064 code, please regard this information as a reference only. I have done similar project in the past, however, since SAA1064 was too difficult to get in my ... |
Topic: 4" 7-segment LED display in 3-digit with 2x7W amplifier |
JohnLeung
Replies: 0
Views: 41156
|
Forum: Code Library Posted: Thu Jan 12, 2006 4:42 am Subject: 4" 7-segment LED display in 3-digit with 2x7W amplifier |
Dear Sirs
A highly recommended book for embedded C programmers :
Embedded System Building Blocks, Complete and Ready-to-use Modules in C, by Jean J. Labrosse.
I have modified one of the chapte ... |
Topic: t6963c LCD + 16F877a |
JohnLeung
Replies: 14
Views: 119776
|
Forum: Code Library Posted: Fri Jan 06, 2006 8:35 pm Subject: t6963c LCD + 16F877a |
I have put my code driver for 128x64 T6963C graphical LCD with a PIC 16F877a on the web. If any one interested can check www.TechToys.com.hk under the download section for details.
John Leung |
Topic: 'Pop' noise following each sqaure tone |
JohnLeung
Replies: 3
Views: 10469
|
Forum: General CCS C Discussion Posted: Tue Aug 24, 2004 4:05 am Subject: 'Pop' noise following each sqaure tone |
I am using port C.2 to generate two square pulses of 625Hz and 725Hz from PORTC.2 to generate a simple DING DONG alert tone for a calling system. When the PORTC.2 is fed to a simple buzzer, the tone w ... |
|