Changes between Version 6 and Version 7 of Docs/Prog/Manual/DeviceSupport/USB


Ignore:
Timestamp:
02/19/10 13:19:05 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/DeviceSupport/USB

    v6 v7  
    2727{
    2828   fprintf(file, "Gross Weight %g\r\n", wtdata[1].grosswt);
     29   fclose(file);
    2930}
    30 fclose(file);
    3131
    3232system("umount /mnt/fl1");
    3333
    3434}}}
    35 This example will mount the flash device, write a file to it, and then unmount the device.
     35This example will mount the flash device, write a file to it, and then unmount the device. The USB storage device should not be removed or replaced while it is mounted. Programs should be written to mount and unmount each time they write to the flash, or there should be some command provided in the program so that the operator can unmount the drive to replace it.
    3636
    3737[[Top]]