Author |
Message |
Topic: issues with mmcsd.c driver ? |
sapy44
Replies: 6
Views: 8555
|
Forum: General CCS C Discussion Posted: Fri Mar 25, 2011 12:04 am Subject: update |
Some progress was made today. I used the voltage divider on the inputs to the SD card and was able to get back CSD and CID data using the corresponding functions found in the driver.
However, I am ... |
Topic: issues with mmcsd.c driver ? |
sapy44
Replies: 6
Views: 8555
|
Forum: General CCS C Discussion Posted: Thu Mar 24, 2011 5:26 pm Subject: level shifting |
PCM,
I will try it with the voltage divider combo you suggested. This should eliminate the I/O levels as an issue. Hopefully everything else is ok.
Do you have any thoughts on the MISO line. I ... |
Topic: issues with mmcsd.c driver ? |
sapy44
Replies: 6
Views: 8555
|
Forum: General CCS C Discussion Posted: Wed Mar 23, 2011 12:27 am Subject: board info |
Okay, I found some links to the board documentation.
http://home.att.ne.jp/green/w-elekitmart/MINILOGIC.pdf
http://mac6.ma.psu.edu/space2008/RockSat/microController/MINISD.pdf
Also, I'm usi ... |
Topic: issues with mmcsd.c driver ? |
sapy44
Replies: 6
Views: 8555
|
Forum: General CCS C Discussion Posted: Tue Mar 22, 2011 11:39 pm Subject: issues with mmcsd.c driver ? |
Okay, here are links to documentation for the H.W. I'm using.
http://melabs.com/downloads/labx2sch_06.pdf
http://www.futurlec.com/Mini_Logic.shtml
http://www.futurlec.com/Mini_SC.shtml
I ... |
Topic: issues with mmcsd.c driver ? |
sapy44
Replies: 6
Views: 8555
|
Forum: General CCS C Discussion Posted: Mon Mar 21, 2011 10:21 am Subject: issues with mmcsd.c driver ? |
All,
Is anyone aware of any bugs with the mmcsd.c driver available with the P.C.H I.D.E. V4.066 ?
I am trying to interface with a Lexar 1GB SD card, but can't get past the initialization pha ... |
Topic: 128x64 GLCD odd behavior |
sapy44
Replies: 3
Views: 4425
|
Forum: General CCS C Discussion Posted: Sun Jul 18, 2010 12:54 am Subject: GLCD info |
Compiler version 4.066
PICs used are 18F4685 and 18F4620
using the standard GLCD driver from CCS |
Topic: 128x64 GLCD odd behavior |
sapy44
Replies: 3
Views: 4425
|
Forum: General CCS C Discussion Posted: Wed May 26, 2010 12:40 pm Subject: 128x64 GLCD odd behavior |
Hello All,
I've been working with a KS0108 based GLCD. In the past I've been able to work with this GLCD with no issues, but recently I've fired it back up and found some odd behavior.
I can ... |
Topic: How to convert two hex values into a 16 bit representation. |
sapy44
Replies: 6
Views: 7011
|
Forum: General CCS C Discussion Posted: Thu Apr 16, 2009 3:21 pm Subject: math solution |
X = first hex value
Y = second hex value
Z= combined hex value (16 bit varaible)
Z = 256*Y + X
or Z = (Y<<8) + X |
Topic: ADC WITH 16F877 |
sapy44
Replies: 2
Views: 4394
|
Forum: General CCS C Discussion Posted: Thu Apr 16, 2009 3:17 pm Subject: int bit resolution |
With the 16F877 the ADC value is 10 bits. A simple int declaration will create an 8-bit variable. Try using int16 instead. You will all need to multiply by 1023 instead of 255. |
Topic: cycle accurate timing simulation |
sapy44
Replies: 2
Views: 9506
|
Forum: General CCS C Discussion Posted: Mon Mar 30, 2009 9:08 am Subject: thanks |
Thanks. This worked out great. |
Topic: cycle accurate timing simulation |
sapy44
Replies: 2
Views: 9506
|
Forum: General CCS C Discussion Posted: Thu Mar 26, 2009 12:47 pm Subject: cycle accurate timing simulation |
I believe that MPLAB can compute cycle accurate timing simulations of compiled code.
I have an application where I need tight control of program execution time between iterations inside a while lo ... |
Topic: glcd |
sapy44
Replies: 2
Views: 3985
|
Forum: General CCS C Discussion Posted: Thu Mar 26, 2009 12:35 pm Subject: cheap 128X64 GLCD |
http://www.bgmicro.com/index.asp?PageAction=VIEWPROD&ProdID=10816 |
Topic: can't create stand alone programs for the 16F877A |
sapy44
Replies: 9
Views: 27822
|
Forum: General CCS C Discussion Posted: Sun Feb 08, 2004 3:44 am Subject: found out what was wrong |
After talking to CCS I've found the solution to the problem. Bascially I was going by what the exercise booklet said to do. They said to remove the ICD=TRUE derective and then recompile the program wi ... |
Topic: can't create stand alone programs for the 16F877A |
sapy44
Replies: 9
Views: 27822
|
Forum: General CCS C Discussion Posted: Thu Feb 05, 2004 8:09 am Subject: still not working |
I read in an earlier post that removing the IC=TRUE line may cause the the improper fuses from being set. In my program however the #fuses derrective is on it's own seperate line. Therefore removing ... |
Topic: can't create stand alone programs for the 16F877A |
sapy44
Replies: 9
Views: 27822
|
Forum: General CCS C Discussion Posted: Wed Feb 04, 2004 11:26 pm Subject: can't create stand alone programs for the 16F877A |
Yes my clock settings are correct. The MCLR pin is held hight through an onboard pull-up. The issue probably lies in the compilier. Any thoughts ?[/quote] |
|