Author |
Message |
Topic: Brushless motor Speed Controller? |
endSly
Replies: 1
Views: 4345
|
Forum: General CCS C Discussion Posted: Tue Mar 04, 2008 12:52 pm Subject: Brushless motor Speed Controller? |
Hello:
I'm working on an Brushless speed controller. But I don`t know how this works. Anyone have an idea of this?
Thanks |
Topic: Extended GLCD Driver (T6963C) |
endSly
Replies: 28
Views: 234399
|
Forum: Code Library Posted: Thu Aug 02, 2007 5:42 am Subject: Extended GLCD Driver (T6963C) |
I don't know why, but glcd_ReadByte doesn't go. I'll try to solve this |
Topic: Extended GLCD Driver (T6963C) |
endSly
Replies: 28
Views: 234399
|
Forum: Code Library Posted: Mon Jul 30, 2007 3:55 am Subject: Extended GLCD Driver (T6963C) |
thanks, the problem was here:
void glcd_pixel(unsigned int8 x, unsigned int8 y, int1 c){
unsigned int8 x_H;
unsigned int8 x_L=0;
x_H = (x / 8);
x_L = 7 - (x - 8*x_H);
glcd_got ... |
Topic: PIC18F4685 Bootloader |
endSly
Replies: 4
Views: 5665
|
Forum: General CCS C Discussion Posted: Fri Jun 29, 2007 3:27 am Subject: PIC18F4685 Bootloader |
Try to use CodeLoader from http://www.thebytefactory.com/ modifying source code. Set Max_Loadable to 0x16800 (90KB). |
Topic: Extended GLCD Driver (T6963C) |
endSly
Replies: 28
Views: 234399
|
Forum: Code Library Posted: Thu Jun 28, 2007 8:46 am Subject: Extended GLCD Driver (T6963C) |
I've been working in this GLCD driver:
http://www.ccsinfo.com/forum/viewtopic.php?t=19957
Original source code by treitmey
Changelog:
v0.1
* Works with all resolutions (240x128, 240x64, 128x1 ... |
Topic: Bluetooth Module Driver |
endSly
Replies: 0
Views: 32388
|
Forum: Code Library Posted: Wed Jun 27, 2007 5:46 am Subject: Bluetooth Module Driver |
This driver suports all a7eng serial bluetooth modules and parallax Bluetooth Module.
This is a first beta.
/***************************************************\
* bt.c Bluetooth Controler ... |
|