--
You received this message because you are subscribed to the Google Groups "SEBHC" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sebhc+un...@googlegroups.com.
To post to this group, send email to se...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Subject: [sebhc] USB flash utilities Now that some of you are getting your USB boards built you will want to try them out. I've written four small utilities that should help. These are written in C and work for both HDOS and CP/M. Norberto will make them available on his web site. Here are brief descriptions of each: VDIR performs a directory listing on the flash drive. It can only list the full directory - no wild card support yet. VGET is used to retrieve files from the flash drive. It currently can do only one file at a time (no wild card or multi file support yet). It must use the same file name on both devices. Since there are some characters allowed in DOS style names that are illegal in HDOS and CP/M you may have to rename some files before copying. It also gives no warning before overwriting a file and does not check to see if there is enough room for the file before beginning the transfer. VPUT is the opposite of VGET and the above caveats apply. Both utilities copy data in 256-byte blocks and make no distinction between text and binary content. Since HDOS uses Unix style end-of-line conventions (NL) and CP/M uses DOS style (CR/LF) I may need to add a switch to handle this. In the mean time a workaround for copying from HDOS to/from CP/M is to use a utility like Notepad++ on the PC to change the EOL setting for the file. VTALK let's you communicate directly with the system-on-a-chip device which has a DOS-like command interface. The commands are described in the VDIP firmware manual on the FTDI web site. One useful use of VTALK is to change to a different subdirectory on the flash drive. Control-C exits back to the command prompt. I will continue to improve and enhance these utilities an am interested in your feedback and suggestions! - Glenn Sent from my iPad -- You received this message because you are subscribed to the Google Groups "SEBHC" group. To unsubscribe from this group and stop receiving emails from it, send an email to sebhc+un...@googlegroups.com. To post to this group, send email to se...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
VDIR is an illegal command.
Try the following;
1. Insert a FAT32 formatted USB flash device into the VDIP1 controller.
2. From the HDOS prompt type VTALK.ABS
3. Press the enter key to get the VDP1 prompt.
4. Type “DIR” to display USB contents.
5. Type Control-C to exit the VTALK utility.
6. That completes the test of the VDIP1 controller
It seems that everything is operational. See picture below!

Thanks Glenn! Also the H8-USB Controller contains screen captures on how to use each command (pages 29, 30 & 31);
http://koyado.com/Heathkit/H-8_USB_files/H8-USB%20CONTROLLER%20V1_0-1.pdf
From: se...@googlegroups.com [mailto:se...@googlegroups.com] On Behalf Of Glenn Roberts
Sent: Sunday, May 19, 2013 7:05 AM
To: se...@googlegroups.com
Subject: Re: [sebhc] USB flash utilities
Harold: You are fine. The VTALK program is really just a diagnostic utility. It is probably for "advanced" users and you may never need it. At the D:\> prompt you can only issue the special VDIP commands which are listed in the firmware manual. Try DIR which is one of the VDIP commands. You should see a listing of files on the drive. yuo cant transfer files using VTALK, you have to use either VGET or VPUT, so hit control c to get back to HDOS.