Electronics development

Moderators: None (Apply to moderate this forum)
Number of threads: 512
Number of posts: 1020

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Cool Disk Interface protocol,help needed???? Posted by AsAdi on 5 Apr 2004 at 8:45 PM
Hello Every One
I have a customized hardware which needs to read files from a cool disk,the files on cool disk can be copied in Windows environment,but my hardware must communicate with cool disk(Pen Disk) via USB port and read those files.Any one can help me to know what's the interface protocol fo cool disks?is there any general protocol for it?any useful information can help me and will be appreciated....thanks

Best Regards
Reza AsAdi
Report
Re: Cool Disk Interface protocol,help needed???? Posted by godtellmeok on 15 Apr 2004 at 11:53 PM
: Hello Every One
: I have a customized hardware which needs to read files from a cool disk,the files on cool disk can be copied in Windows environment,but my hardware must communicate with cool disk(Pen Disk) via USB port and read those files.Any one can help me to know what's the interface protocol fo cool disks?is there any general protocol for it?any useful information can help me and will be appreciated....thanks
:
: Best Regards
: Reza AsAdi
:
Accordding to your description, you shall communicates with
the pen disk via usb port on your hardware board. I think you
should have a usb mass storage protocol to resolve it.
Report
Re: Cool Disk Interface protocol,help needed???? Posted by AsAdi on 16 Apr 2004 at 7:57 PM
: : Hello Every One
: : I have a customized hardware which needs to read files from a cool disk,the files on cool disk can be copied in Windows environment,but my hardware must communicate with cool disk(Pen Disk) via USB port and read those files.Any one can help me to know what's the interface protocol fo cool disks?is there any general protocol for it?any useful information can help me and will be appreciated....thanks
: :
: : Best Regards
: : Reza AsAdi
: :
: Accordding to your description, you shall communicates with
: the pen disk via usb port on your hardware board. I think you
: should have a usb mass storage protocol to resolve it.
:
You're right,my instrument must read some text files which are copied on pen disk and changes this files,then writes it on pen disk again but I don't know how.I need to know the protocols in layers higher than hardware communication,but I don't know from where!!!)),
so if you can show me any detailed resoure about it,you do me a great favour.

Best Regards
AsAdi
Report
Re: Cool Disk Interface protocol,help needed???? Posted by godtellmeok on 19 Apr 2004 at 9:31 PM
This message was edited by godtellmeok at 2004-4-20 2:40:34

: : : Hello Every One
: : : I have a customized hardware which needs to read files from a cool disk,the files on cool disk can be copied in Windows environment,but my hardware must communicate with cool disk(Pen Disk) via USB port and read those files.Any one can help me to know what's the interface protocol fo cool disks?is there any general protocol for it?any useful information can help me and will be appreciated....thanks
: : :
: : : Best Regards
: : : Reza AsAdi
: : :
: : Accordding to your description, you shall communicates with
: : the pen disk via usb port on your hardware board. I think you
: : should have a usb mass storage protocol to resolve it.
: :
: You're right,my instrument must read some text files which are copied on pen disk and changes this files,then writes it on pen disk again but I don't know how.I need to know the protocols in layers higher than hardware communication,but I don't know from where!!!)),
: so if you can show me any detailed resoure about it,you do me a great favour.
:
: Best Regards
: AsAdi
:
If the pen disk is inserted to your board directly,I think you
should act your board as a usb host.What is a usb host? For example,
your pc is a usb host which is able to handle all usb devices' activities connected to it. So implement a usb host in your board
is your real target! You can go to www.usb.org to download the usb 2.0
specs, mass storage specs and check the chapter 10(about host). besides this, you have to add a filesystem above the protocol to resolve the file in the pen disk.

Your program stacks look like that:

app->filesystem(support filesystem like fat32/fat16/fat12)->mass storage( to resolve protocol between usb command and filesystem)->
host controller driver(HCD Driver)->physical layer






Report
Re: Cool Disk Interface protocol,help needed???? Posted by AsAdi on 20 Apr 2004 at 8:02 PM
: This message was edited by godtellmeok at 2004-4-20 2:40:34

: : : : Hello Every One
: : : : I have a customized hardware which needs to read files from a cool disk,the files on cool disk can be copied in Windows environment,but my hardware must communicate with cool disk(Pen Disk) via USB port and read those files.Any one can help me to know what's the interface protocol fo cool disks?is there any general protocol for it?any useful information can help me and will be appreciated....thanks
: : : :
: : : : Best Regards
: : : : Reza AsAdi
: : : :
: : : Accordding to your description, you shall communicates with
: : : the pen disk via usb port on your hardware board. I think you
: : : should have a usb mass storage protocol to resolve it.
: : :
: : You're right,my instrument must read some text files which are copied on pen disk and changes this files,then writes it on pen disk again but I don't know how.I need to know the protocols in layers higher than hardware communication,but I don't know from where!!!)),
: : so if you can show me any detailed resoure about it,you do me a great favour.
: :
: : Best Regards
: : AsAdi
: :
: If the pen disk is inserted to your board directly,I think you
: should act your board as a usb host.What is a usb host? For example,
: your pc is a usb host which is able to handle all usb devices' activities connected to it. So implement a usb host in your board
: is your real target! You can go to www.usb.org to download the usb 2.0
: specs, mass storage specs and check the chapter 10(about host). besides this, you have to add a filesystem above the protocol to resolve the file in the pen disk.
:
: Your program stacks look like that:
:
: app->filesystem(support filesystem like fat32/fat16/fat12)->mass storage( to resolve protocol between usb command and filesystem)->
: host controller driver(HCD Driver)->physical layer
:
:
:
:Thanks:),I'll try it,but I think it's some hard,implementing host tasks and resolving file system....:)but I'll find it finally.Maybe I encounter some problem and I jump into message board again....

Regards
AsAdi
:
:
:

Report
Re: Cool Disk Interface protocol,help needed???? Posted by godtellmeok on 21 Apr 2004 at 3:12 AM
: : This message was edited by godtellmeok at 2004-4-20 2:40:34

: : : : : Hello Every One
: : : : : I have a customized hardware which needs to read files from a cool disk,the files on cool disk can be copied in Windows environment,but my hardware must communicate with cool disk(Pen Disk) via USB port and read those files.Any one can help me to know what's the interface protocol fo cool disks?is there any general protocol for it?any useful information can help me and will be appreciated....thanks
: : : : :
: : : : : Best Regards
: : : : : Reza AsAdi
: : : : :
: : : : Accordding to your description, you shall communicates with
: : : : the pen disk via usb port on your hardware board. I think you
: : : : should have a usb mass storage protocol to resolve it.
: : : :
: : : You're right,my instrument must read some text files which are copied on pen disk and changes this files,then writes it on pen disk again but I don't know how.I need to know the protocols in layers higher than hardware communication,but I don't know from where!!!)),
: : : so if you can show me any detailed resoure about it,you do me a great favour.
: : :
: : : Best Regards
: : : AsAdi
: : :
: : If the pen disk is inserted to your board directly,I think you
: : should act your board as a usb host.What is a usb host? For example,
: : your pc is a usb host which is able to handle all usb devices' activities connected to it. So implement a usb host in your board
: : is your real target! You can go to www.usb.org to download the usb 2.0
: : specs, mass storage specs and check the chapter 10(about host). besides this, you have to add a filesystem above the protocol to resolve the file in the pen disk.
: :
: : Your program stacks look like that:
: :
: : app->filesystem(support filesystem like fat32/fat16/fat12)->mass storage( to resolve protocol between usb command and filesystem)->
: : host controller driver(HCD Driver)->physical layer
: :
: :
: :
: :Thanks:),I'll try it,but I think it's some hard,implementing host tasks and resolving file system....:)but I'll find it finally.Maybe I encounter some problem and I jump into message board again....
:
: Regards
: AsAdi
: :
: :
: :
:
:


About the host task, you should take the cypress' sL811hs or philips' solution to conquer easily.
I think the almost efforts you do is Filesystem and mass protocol.

Good Luck!



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.