We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi all,
I'm using CY7C68013A-100 chip sets that has 16k of on chip memory. However, when my firmware code is more than 8k, the enumeration process fails. Has anyone run into this kind of issue before?
I've tried playing around with the project options from uVision without much luck....
Thanks, Peter
You don't have some limited version of the tools, do you...?
I'm not using the eval tool. The tool I'm using is fully licensed...
how do you download the coode into the coderam? EEprom based or driver based? are you using the new tools from cypress to create the neccesary files format?
You know older devices had only 8k ram. So maybe your hex2bix is out of date
Thomas
I am using driver to load the FW. One interesting thing is in the file ezloader.h there's this define
// // This is the highest internal RAM ad //
#define MAX_INTERNAL_ADDRESS 0x2000
I changed the define to 0x3fff to make the max size 16k. With that I was able to enumerate with FW size a little bigger but once the FW is around 8.4k the enumeration failed again...
I changed the define to 0x3fff
did you compile the driver after changeing that define? Otherwise the limit may still within the driver.
Yes, I did recompiled the driver code using the build command. I need to determine:
1. Is this a Cypress driver code issue? 2. Is this a configuration issue with the way I configured my Keil uVision 3.0 project settings (ie. the data and code space ranges) 3. Is this a C51 library issue? 4. Something to do with my firmware. I don't think it's my code, but it could be the the framework code that I'm using. Normally I don't need to look into the framework code because it used to work for my older chipset...