| Author |
Message |
emanuelcsm
Joined: 15 Feb 2005 Posts: 61 Helped: 6 Location: Brasil
|
17 Feb 2005 16:59 ZIP File using MSP430 |
|
|
|
|
HI,
I actualy use SmartMediaŽ Cards to save files, then I copy them to PC through a SmartMediaŽ Reader. Now I need to compact this files before save them on the SmartMedia.
Does someone have any example fo C language to compact files? ZIP format prefered.
Emanuel.
|
|
| Back to top |
|
 |
Ace-X
Joined: 25 Jan 2002 Posts: 590 Helped: 26
|
17 Feb 2005 17:27 ZIP File using MSP430 |
|
|
|
|
The main problem will be the lack of SRAM in your system, because all algorithms require quite large buffers for dynamic dictionary or sliding window (for eaxmple, 32K in LZ77). But you can try the following free GPL SDK: http://www.7-zip.org/sdk.html
It is ANSI C and quite OK with resource requirements.
|
|
| Back to top |
|
 |
Andrea
Joined: 30 Sep 2003 Posts: 76 Helped: 3
|
18 Feb 2005 9:01 Re: ZIP File using MSP430 |
|
|
|
|
Emanuelcsm,
unfortunately I have a question for you, not an answer....
Are you using a file system that is directly readable from the PC? Is this opensource or can you provide links or references to free sources for FAT file systems for MSP430?
Thanks in advance,
Andrea
|
|
| Back to top |
|
 |
emanuelcsm
Joined: 15 Feb 2005 Posts: 61 Helped: 6 Location: Brasil
|
18 Feb 2005 11:55 Re: ZIP File using MSP430 |
|
|
|
|
| Andrea wrote: |
Emanuelcsm,
unfortunately I have a question for you, not an answer....
Are you using a file system that is directly readable from the PC? Is this opensource or can you provide links or references to free sources for FAT file systems for MSP430?
Thanks in advance,
Andrea |
Andrea,
yes I'm using a file system direct readable from PC.
I don't find any open source for this, I bougth the documentation necessary in SSFDC Forum and develop the system.
If you want to develop the same system I can halp you....
What is your questions?
SDS.
Emanuel Cassimiro
emanuelcsm(at)yahoo.com.br
|
|
| Back to top |
|
 |
gidimiz
Joined: 03 Feb 2005 Posts: 428 Helped: 77
|
20 Feb 2005 14:04 Re: ZIP File using MSP430 |
|
|
|
|
Hi,
Not sure it will help ( but mybe it will ), I have some code that i found for the Microchip MCU and becasue i also write code to the MSP430 I know it want be to difficult to change the code from one to the other.
http://www.walrus.com/~raphael/mp3/
This code is used from an MP3 palyer that uses also the CF memory card. The code is in C so you want have to much truble to change it to the MSP430.
Good luck.
|
|
| Back to top |
|
 |
Google AdSense

|
20 Feb 2005 14:04 Ads |
|
|
|
|
|
|
| Back to top |
|
 |
Andrea
Joined: 30 Sep 2003 Posts: 76 Helped: 3
|
21 Feb 2005 9:17 Re: ZIP File using MSP430 |
|
|
|
|
Emanuel,
I have no specific questions at the moment. I'm just starting a new project that will involve a file system on a CF, so I'd like to find a starting point for it. I think that the link that gidimiz suggested can be one. Thanks to both.
Andrea
|
|
| Back to top |
|
 |