Installing TrueFFS for DiskOnChip in Windows CE (All Versions)

Size: px
Start display at page:

Download "Installing TrueFFS for DiskOnChip in Windows CE (All Versions)"

Transcription

1 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) Installation Guide December SR L Rev. 4.8

2 DOCUMENT CONTROL INFORMATION DCO No.: Title Name Date Issued by: DiskOnChip Product Manager Amir Fridman December 25, 2003 Approved by: VP Operations and Product Management Rami Koren December 25, Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

3 TABLE OF CONTENTS 1. Introduction Using DiskOnChip with Windows CE Overview DiskOnChip System Architecture Incorporating the TrueFFS Driver in the Windows CE Image Updating the Binary Image Builder (BIB) Files Updating the Registry Parameter Descriptions Required Entries Optional Entries Booting from DiskOnChip TrueFFS Extended Functionality DiskOnChip Extended Functionality via IOCTL Calls Sample Code Using IOCTL Calls to the TrueFFS Driver Accessing the DiskOnChip FAT Partition at Start-Up Loading and Running Applications from the DiskOnChip FAT Partition Example Storing Registry Entries Additional TrueFFS Functionality Formatting DiskOnChip Under Windows CE Remote Update the of Windows CE Image in the Binary Partition Additional Information and Tools How to Contact Us Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

4 1. INTRODUCTION M-Systems DiskOnChip is a family of high-performance flash disks. Starting from ETK (Microsoft s Windows CE Embedded Tool Kit) version 2.1, Windows CE provides native support for DiskOnChip through the TrueFFS driver (as of version 4.2 of the platform builder, this support is located in the third-party section). However, it is recommended to download the newest version of the TrueFFS driver directly from the M-Systems website at This installation manual explains how to install DiskOnChip as an additional disk or as a boot device under Windows CE 2.x-3.0 and Windows CE.NET. In this manual, the term DiskOnChip refers to all the devices listed below. Devices Supported by TrueFFS 6.x DiskOnChip G3 DiskOnChip P3 DiskOnChip 2000 G3 Devices Supported by TrueFFS 5.x DiskOnChip Millennium Plus Mobile DiskOnChip DiskOnChip 2000 TSOP DiskOnChip Millennium DiskOnChip 2000 DiskOnChip DIMM Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

5 2. USING DISKONCHIP WITH WINDOWS CE 2.1. Overview DiskOnChip has three primary uses in a Windows -CE-based system: Additional storage device: Storage for user programs, drivers and data. When used in this capacity, programs stored on DiskOnChip are not fully loaded into RAM for execution, but rather are paged into RAM on demand. For system configurations with a shell, DiskOnChip is displayed as an icon just like all other folders in the system. OS boot device: Storage for the Windows CE image and registry information to enable booting Windows CE directly from DiskOnChip. Non-Volatile Memory (NVM) device: DiskOnChip models with XIP functionality can store the system boot code, thus eliminating the need for an additional boot device (EEPROM, ROM or NOR flash). This can reduce the BOM and simplify production DiskOnChip System Architecture DiskOnChip devices appear under Windows CE as ordinary disk drives. From the application perspective, files on DiskOnChip are accessed via standard Win32 File I/O APIs, such as CreateFile() and ReadFile(). The TrueFFS driver implements its own data organization scheme, known as a Virtual Block Device Flash Translation Layer, which manages the memory cells on DiskOnChip. It is unnecessary for Windows CE to implement a separate flash file system to support linear flash devices. Instead, the FAT file system included in Windows CE can also services files on the flash media via the TrueFFS driver. The FAT file system does not directly read or write to the DiskOnChip hardware; the TrueFFS driver performs all low-level hardware access, and presents DiskOnChip to the file system as a block-oriented device. 5 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

6 A conceptual view of the control flow for reading a file from DiskOnChip is shown in Figure 1. Applications TrueFFS/TL Layer ReadFile() Win CE Kernel Built-in Flash (DiskOnChip) Socket Layer FAT FileSystem Code VirtualCopy() DeviceIOContril() DiskOnChip Device Manager DSK_IOControl() Figure 1: Reading a File from DiskOnChip The application calls the ReadFile() function using a handle to a file stored on DiskOnChip. The FAT file system translates the read request into logical blocks and searches the buffer cache for the requested blocks. If the blocks are not found, the file system issues an IOControl() request to read bytes from DiskOnChip. The TrueFFS driver receives the IOControl() request and responds by accessing DiskOnChip through one of the socket layers. 6 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

7 3. INCORPORATING THE TRUEFFS DRIVER IN THE WINDOWS CE IMAGE This section describes the modifications required in the system configuration to include the TrueFFS driver, and the required registry entries in the OS image Updating the Binary Image Builder (BIB) Files The makeimg.exe file uses binary Image Builder (BIB) files to build the OS image. To include the TrueFFS driver in the image, the system integrator has to include the trueffs.dll file in one of the BIB files. You can modify one of the platform s BIB files (typically platform.bib as TrueFFS is part of the platform hardware configuration). The TrueFFS.dll is used by the kernel in an early stage of the boot process, especially when using the HIVE-based registry or the BinFS. It those cases trueffs.dll should be in the same XIP region as the kernel. You must verify that trueffs.dll is included in the ce.bib file after building the OS image. ce.bib lists all the BIB files included in the image Updating the Registry The Windows CE Device Manager uses several registry subkeys under the HKEY_LOCAL_MACHINE\Drivers key when loading the TrueFFS driver. Built-in devices like DiskOnChip rely on the registry settings being available at boot time. These keys must therefore be part of the default registry. This section describes the registry entries used by the Device Manager to install the TrueFFS driver. The following entries must be added to the appropriate registry file, typically platform.reg, which is located at %_WINCEROOT%\platform\<Platform name>\files, where <Platform name> stands for the relevant platform being used, such as ARM Integrator. The registry entry key name indicates the device and partition number to which the key refers: Registry entry for device 0 partition 0: HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS Registry entry for device 0 partition 1: HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS1 Registry entry for device 0 partition 2: HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS2 Registry entry for device1 partition 0: HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS10 Registry entry for device 1 partition 2: HKEY_LOCAL_MACHINE\Drivers\ BuiltIn\TrueFFS12 7 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

8 The DocBase<xx> field in every registry entry indicates the WindowBases for the next DiskOnChip in the system. For example, when looking at the following registry entry: [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS] refers to device 0 partition 0 [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS1] refers to device 0 partition 1 [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS2] refers to device 0 partition 2 The DocBase10 field in the first registry entry indicates that the WindowBase of device 1 is 0xD8000. The DocBase20 field in the first registry entry of device 1, [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS1], indicates the WindowBase of device 2 is 0xc8000. Below is an example of registry entries customized for a CEPC platform with two DiskOnChip devices installed. The first device is further partitioned into three disk (BDTL) partitions. [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS] Dll = TrueFFS.dll Prefix = DSK Order = dword:1 Ioctl = dword:4 FSD = FATFS.DLL WindowBase = dword:d0000 DocBase10 = dword:d8000 DeviceArrayIndex = dword:0 "IClass"="{A4E7EDDA-E D6B-4195D48BB865}" ;CE.NET only [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS1] Dll = TrueFFS.dll Prefix = DSK Order = dword:1 Ioctl = dword:4 FSD = FATFS.DLL WindowBase = dword:d0000 DeviceArrayIndex = dword:1 "IClass"="{A4E7EDDA-E D6B-4195D48BB865}" ;CE.NET only [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS2] Dll = TrueFFS.dll 8 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

9 Prefix = DSK Order = dword:1 Ioctl = dword:4 FSD = FATFS.DLL WindowBase = dword:d0000 DeviceArrayIndex = dword:2 "IClass"="{A4E7EDDA-E D6B-4195D48BB865}" ;CE.NET only [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TrueFFS10] Dll = TrueFFS.dll Prefix = DSK Order = dword:1 Ioctl = dword:4 FSD = FATFS.DLL WindowBase = dword:d8000 DeviceArrayIndex = dword:3 "IClass"="{A4E7EDDA-E D6B-4195D48BB865}" ;CE.NET only 9 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

10 3.3. Parameter Descriptions Required Entries Every TrueFFS registry entry must contain the following keys: Dll : The name of the driver file (usually trueffs.dll). Prefix : The driver prefix. This is used when opening a device using CreateFile in order to operate extended driver functions. Order : For system use. See Windows CE help for details. IOCTL : For system use. See Windows CE help for details. FSD : The file system.dll file. TrueFFS typically uses the fatfs.dll file, but may use any file system for Windows CE that uses a 512-byte block device. WindowBase : The WindowBase parameter determines DiskOnChip s physical address in the system memory. The value should be within the 32-bit address range, and is determined during hardware design or system integration. Values shown here are for example only. DocBaseyy : The DiskOnChip WindowBase defined in the [HKEY_LOCAL_MACHINE\Drivers\BuiltIn\TruFFSyy] registry entry. This field is not required for the last device registry entry. DeviceArrayIndex : The order in which the system loads the devices. Iclass : GUID that defines the driver's exposed interface. The required value is A4E7EDDA- E D6B-4195D48BB865. This value is required only when using Windows CE.NET Optional Entries The following registry entries are optional: Folder (for Windows CE 3.0 or earlier): This parameter determines the folder name associated with the DiskOnChip partition. If this string is absent, the default name for Windows CE 3.0 and above is Storage Card, and for earlier versions of Windows CE the default name is DiskOnChip. If the Folder parameter is used to change the folder name (for example, to DiskOnChip), then the name defined in the Folder parameter is the actual name of the device. Profile (for Windows CE.NET): This parameter determines the profile name associated with the DiskOnChip partition. If this string is absent, the default name is TRUEFFS_DOC. The profile key is read by the Storage Manager in order to set the parameters of this partition. To set a dedicated name or folder name to a partition, change the profile setting of the Storage Manager with the profile name entered in this field. For more information about Storage Manager profiling, refer to the online platform builder documentation. AddressShift : This entry can only have the values 0, 1, or 2. This field determines the size of the DiskOnChip memory window. Some systems (such as StrongARM-based platforms) are unable to perform 8-bit transactions to the memory space. For example, connecting a 16-bit DiskOnChip to a platform that can perform only 32-bit memory transactions requires connecting DiskOnChip to the bus using single bit address shift (see the appropriate DiskOnChip data sheet). In this case, the memory window of DiskOnChip is doubled. 10 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

11 DocAccessType : This entry determines the data bus width when accessing DiskOnChip. The value of this entry can be as follows (in hex format): dword:8 - DiskOnChip is accessed on a byte (8-bit) boundary. dword:10-16-bit access. DiskOnChip is accessed on a word (16-bit) boundary. dword:20-32-bit access. DiskOnChip is accessed on a long (32-bit) boundary. Use8Bit : When set, TrueFFS uses 8-bit (1-byte) access to DiskOnChip instead of 32-bit access. Useful for buses that only work in 16-bit mode. This entry should be set to 1 in platforms such as XScale and StrongARM. dword:0-32-bit access (default) dword:1-8-bit access CustomizeAccess : TrueFFS supports many bus types and configurations, including 8/16/32-bit access, address shifts and various types of processors and bus controllers. In addition, you may instruct TrueFFS to use your own custom access routines, in cases where the standard TrueFFS access routines are not usable. The Windows CE TrueFFS driver supports calling an external DLL file (which can be supplied by M-Systems or written by the customer) that contains customized access routines for a specific platform configuration and specific DiskOnChip models. VerifyWrite : When using this parameter, TrueFFS performs an immediate read operation from the flash after every write cycle. The value of this entry can be as follows: dword:0 - Sets TrueFFS to Optimized Verify Write mode. This is the default TrueFFS mode for devices supported by INFTL, such as DiskOnChip Millennium Plus and Mobile DiskOnChip. In this mode, a sector is assumed to remain valid after it has been verified as long as no sudden power-down event occurs; therefore, no additional read operations (verifications) are performed. When recovering from a power failure, TrueFFS gradually verifies the validity of additional sectors as data is written to the disk partition. All the sectors on the disk are eventually verified, at which point no further verification is done and peak performance is achieved (default). dword:1 - Sets TrueFFS to Read Before and After Write mode. In this mode, each write operation is preceded by a read operation verifying the flash area is indeed erased, and followed by a read operation verifying the data was written properly. Only after both conditions are met is the sector considered to be written properly. Selecting this option results in lower write performance, but insures absolute data protection against power failures or any other event (such as errors caused from noisy buses, faulty flash, or flash close to its end of life). dword:2 - Sets TrueFFS to Standard mode. In this mode, a sector is considered written successfully when the flash media reports that the write operation ended successfully. Additional verification (using a read operation) is not performed, so TrueFFS works at peak performance regardless of past power failure events. This is the default mode for devices supported by NFTL, as these devices do not require additional verification for most applications. 11 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

12 RamCheck : During the DiskOnChip mounting process, a RAM test is performed to verify that the memory address where DiskOnChip resides is correct, or whether it behaves like RAM (as flash media does not behave like RAM, this function can detect if DiskOnChip is located at the correct address). This test may cause problems in some systems. Set the value of RamCheck to 0 to turn off this test. dword:0 - RAM check disabled (default) dword:1 - RAM check enabled UseCache : Enabling this option improves performance, but requires additional RAM resources. The NAND Flash Translation Layer (NFTL, INFTL, or SAFTL) uses a small part of each flash unit and sector for control information that allows accessing the data stored on DiskOnChip as a virtual block device. Setting this option to 1 enables caching this information in order to improve performance. dword:0 dword:1 (default) CacheSize : Sets the cache size. For SAFTL, it is possible to set the cache size in order to control the memory consumption of the driver. The size is set as the number of cached erasable units. The minimum value is 0x40. If the specified number is higher than the actual number of units in the device, then memory consumption is limited to the amount required for all units. The default value for UseCache = 0 is 0x40, and UseCache = 1 indicates a full cache. dword:x RemoveFatFilter : The Windows CE TrueFFS driver contains a FAT filter that monitors file system write operations to the FAT area. The TrueFFS driver uses this information to improve performance by deleting sectors from the media when the corresponding file is deleted. Use this entry to disable FAT filter operation. dword:1 AutoDPDMode : This option enables Auto Deep Power-Down mode, which reduces the average power consumption of DiskOnChip. Auto mode puts DiskOnChip in Deep Power-Down mode automatically after each driver command, and takes DiskOnChip out of Deep Power-Down mode automatically when the driver is called again. Using this mode disables the option of booting from DiskOnChip via software reset, as the IPL cannot be accessed from Deep Power-Down mode. In order to boot from a DiskOnChip device in Deep Power-Down mode, a hardware reset or powering off is required. This registry entry has no effect on DiskOnChip devices that do not support Deep Power-Down mode. dword:1 AutoFormat : This option enables autoformatting DiskOnChip if the device cannot be mounted during the initialization process. AutoFormat formats the device with a single disk partition in FAT format. This allows the driver to mount, and the user can then format the device as required using the FL_IOCTL_FORMAT_PHYSICAL_DRIVE IOCTL function. dword:1 12 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

13 3.4. Booting from DiskOnChip Booting Windows CE from DiskOnChip enables the system integrator to use a very small ROM in the system, storing the OS itself on DiskOnChip. Figure 2 illustrates the basic structure of a typical hardware system. CPU DiskOnChip ( MB) Contains the OS image and user files ROM or NOR flash (not needed when - using the DiskOnChip XIP boot block) RAM Other Devices Other Devices Figure 2: Basic Structure of a Typical Hardware Environment The system integrator generates a Windows CE image that contains the TrueFFS driver. This image is then placed on DiskOnChip, either as a standard file in the FAT file system or in a binary partition reserved especially for boot images. A boot loader is required to load this image into memory. The boot loader can be stored on DiskOnChip itself (in models with a Programmable Boot Block), or on EEPROM or NOR flash, and is invoked upon boot-up. The boot loader code consists of two parts: Code that performs basic system initialization tasks. Code that copies the Windows CE image (e.g. NK.BIN) from DiskOnChip to RAM and then jumps to the start address of the image. A minimal amount of ROM is required to implement this boot solution, usually in the range of KB. 13 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

14 4. TRUEFFS EXTENDED FUNCTIONALITY 4.1. DiskOnChip Extended Functionality via IOCTL Calls Version 6.1 of the TrueFFS driver for Windows CE enables the user to implement the following extended functionality of the TrueFFS and DiskOnChip hardware: Obtain information on DiskOnChip Hardware and software read/write protection Initiate garbage collection in the background Access the DiskOnChip binary partition Format DiskOnChip under Windows CE Read/write to/from the DiskOnChip OTP area Read the DiskOnChip device Unique ID (UID) Activate Deep Power-Down mode (low power consumption mode) These new features are accessible through standard Windows CE IOCTL calls to the TrueFFS driver, using the API provided in the ceioctl.h file. For more information on these IOCTL calls, refer to the DiskOnChip Driver Extended Functions Based on TrueFFS 6.x developer guide. Although this document specifies all IOCTL functionality, when using the Windows CE driver API, you should refer to the ceioctl.h file and not the developer guide. Sample programs using these IOCTL calls are located in the example directory of the TrueFFS driver for Windows CE. Section 4.2 illustrates a sample use of FL_IOCTL_GET_INFO Sample Code Using IOCTL Calls to the TrueFFS Driver // ***************************** // ** MAIN Get DiskOnChip info // ***************************** #include <windows.h> #include <winbase.h> #include ceioctl.h void TRACE(LPCTSTR szformat,...); int WINAPI WinMain(HINSTANCE hinstance, HINSTANCE hinstprev, LPWSTR pszcmdline,int ncmdshow) { 14 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

15 HANDLE hdev=null; // handle to the TrueFFS driver DWORD dwgarbage=0; // the amount of data returned BOOL bstatus=false; // return code from DeviceIoControl fldiskinfooutput diskinfooutput; floutputstatusrecord OutputStatusRecord; // Bind TrueFFS driver TRACE(TEXT("Binding TrueFFS driver\n")); hdev= CreateFile(TEXT("DSK1:"), GENERIC_READ GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL); if(hdev ==INVALID_HANDLE_VALUE) { TRACE(TEXT("Binding DiskOnChip driver failed.error %ld\n"),getlasterror()); hdev = NULL; return 1; } //Calling GetInfo extended function TRACE(TEXT("Calling GetInfo\n")); // get DiskOnChip information if(deviceiocontrol(hdev, FL_IOCTL_GET_INFO, NULL, 0, &diskinfooutput, sizeof(fldiskinfooutput), &dwgarbage, NULL)) 15 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

16 { } else { TRACE(TEXT("ERROR code of %d while getting DiskOnChip information\n"),diskinfooutput.status); return 1; } TRACE(TEXT("\n The test completed successfully\r\n")); CloseHandle(hDev); hdev = NULL; return 0; } // FUNCTION NAME "TRACE" void TRACE(LPCTSTR szformat,...) { TCHAR szbuffer[512]; va_list pargs; va_start(pargs, szformat); wvsprintf(szbuffer, szformat, pargs); va_end(pargs); _tcscat(szbuffer, TEXT("")); OutputDebugString(szBuffer); } 16 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

17 5. ACCESSING THE DISKONCHIP FAT PARTITION AT START-UP 5.1. Loading and Running Applications from the DiskOnChip FAT Partition In Windows CE, applications can be integrated into NK.BIN or stored on the DiskOnChip FAT partition. Splitting the image by storing applications on the DiskOnChip FAT partition reduces the initial size of NK.BIN, and provides a flexible solution for upgrades. It also improves design regarding boot time and system performance, and frees up RAM space by loading only the most commonly used applications at start-up. This enables loading other applications to RAM, as required. A registry entry in NK.BIN is required so that applications that are stored in the DiskOnChip FAT partition may be loaded automatically upon boot-up. This entry should be added to the [HKEY_LOCAL_MACHINE\init] section of the Project.reg file Example The application user_application.exe is loaded automatically after the shell.exe, device.exe and gwes.exe applications are loaded on boot-up: [HKEY_LOCAL_MACHINE\init] "Launch10"= "shell.exe" "Launch20"= "device.exe" "Launch30"= "gwes.exe" "Depend30"= hex:14,00 "Launch40"= "user_application.exe" "Depend40"= hex:1e,00, 14,00 As DiskOnChip is not a default folder in Windows CE, a search path must be added to one of the registry (*.reg) files, similar to the PATH command in DOS: [HKEY_LOCAL_MACHINE\Loader] "SystemPath"= multi_sz:\\diskonchip\\ 17 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

18 6. STORING REGISTRY ENTRIES Non-volatile media such as DiskOnChip enable developers to save Windows CE registry entry changes, and to retain these modifications on subsequent boot-up of the target platform. This is facilitated by the Windows CE Persistent Registry Entries feature (introduced in Windows CE 2.11), which solves the problem of losing boot updates saved in volatile RAM registry entries. From Windows CE 4.1 and on, it is also possible to use the HIVE-based registry mechanism. Using this option enables including a minimal standard set of registry keys required for system startup, including the registry of the TrueFFS driver. The rest of the registry is stored as an FS file in the DiskOnChip block device folder. To learn more about using the HIVE-based registry mechanism, refer to the platform builder online help on HIVE-based registry. To learn more about implementing CE Persistent Registry storage with DiskOnChip, refer to application note AP-DOC-041, Windows CE Persistent Registry Storage using DiskOnChip. 18 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

19 7. ADDITIONAL TRUEFFS FUNCTIONALITY 7.1. Formatting DiskOnChip Under Windows CE The TrueFFS driver scans the system bus for installed DiskOnChip devices. If it locates a device that is physically unformatted, such as a new device, TrueFFS automatically formats it. This format operation also implements part of the CE formatter function, and places two copies of the FAT tables on DiskOnChip. If the installed DiskOnChip is formatted physically but not logically, meaning that no FAT files are found, Windows CE displays a formatting process confirmation during the boot process. If confirmed, Windows CE logically formats DiskOnChip. The boot sequence then continues smoothly, and no rebooting is required. The TrueFFS driver call FL_IOCTL_FORMAT_PHYSICAL_DRIVE IOCTL may be used to format the DiskOnChip manually, and to create disk partitions, protection, etc. Sample code for operating this IOCTL call (and others) is included in the examples directory of the TrueFFS CE driver for Windows CE. DiskOnChip can also be formatted using the TrueFFS SDK package, which is available from M-Systems. The TrueFFS SDK is supplied in source code, and requires a license agreement. If DiskOnChip can be physically removed from the development platform (using ZIF sockets), it is recommended to format the device on a PC platform running DOS. This requires a DiskOnChip EVB with a ZIF socket, and the ready-made DFORMAT utility for DOS. Use the TrueFFS SDK or the BDK source code provided by M-Systems to write the Windows CE image and data to the DiskOnChip binary partition, through files or buffers. The TrueFFS driver under Windows CE enables writing files to the FAT partition. Important: You must reboot your system in order to remount DiskOnChip Remote Update the of Windows CE Image in the Binary Partition The TrueFFS driver can be used to perform remote updates of data that reside on the DiskOnChip binary partition. The BDK code in the boot ROM enables the developer to update the DiskOnChip boot image from a remote server quickly and safely. For example, the end user can update the Windows CE image file NK.BIN, and drivers and applications that reside on the DiskOnChip binary partition via a dial-up or network port. A remote update can be performed in the following ways: Updating the binary partition with an application that uses the BDK write API, while the OS is running. Updating the binary partition upon boot-up, before the OS is launched Note: Win CE is 32WIN-API-driven, and slight changes may have to be made to the BDK functions to allocate memory and compile it. It is recommended to implement the VirtualAlloc() and VirtualCopy() Windows CE APIs in order to allocate the bdkwin pointer. 19 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

20 When updating the OS image itself, it is recommended to implement the remote update using the second option, before the OS is launched. As the update mechanism is included in the boot ROM or in the DiskOnChip binary partition itself (when DiskOnChip is used as the sole non-volatile memory device in the system), it is possible to restart if a power failure should occur during the update process. Figure 3 illustrates a boot ROM update scheme, using the BDK init and write API functions: Updating the OS image workflow System Init Code Do you want to update your OS image? Initiate a dial-up or network port for dowloading, and allocate a RAM buffer Download the new OS image from the rem ote server to the RAM buffer (typically 512 bytes) YES W rite the new OS image to the binary partition using the BDK init and write API functions NO End/Verify the updating process Copy the OS image from DiskOnChip to RAM Jump to the start address of the OS image in RAM Figure 3 Updating the OS Image Using BDK Functions 20 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

21 8. ADDITIONAL INFORMATION AND TOOLS Additional information about DiskOnChip, including data sheets and application notes, can be found at More information about booting up a Windows CE system using DiskOnChip can be obtained from Bsquare at Additional tools and documents are listed in the following table: Document/Tool Description Developer Guide DiskOnChip Boot Software Development Kit (BDK) Developer Guide DiskOnChip Driver Extended Functions Based on TrueFFS 6.x Application Note, AP-DOC-41 Windows CE Persistent Registry Storage Using DiskOnChip User Manual DiskOnChip Software Utilities Reference Guide Installing and Using DiskOnChip in Pocket PC Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

22 HOW TO CONTACT US USA M-Systems Inc Central Ave, Suite A Newark CA Phone: Fax: Japan M-Systems Japan Inc. Asahi Seimei Gotanda Bldg., 3F Higashi-Gotanda Shinagawa-ku Tokyo, Phone: Fax: Taiwan M-Systems Asia Ltd. Room B, 13 F, No. 133 Sec. 3 Min Sheng East Road Taipei, Taiwan R.O.C. Tel: Fax: China M-Systems China Ltd. Room Bldg. 2, International Commerce & Exhibition Ctr. Hong Hua Rd. Futian Free Trade Zone Shenzhen, China Phone: Fax: Europe M-Systems Ltd. 7 Atir Yeda St. Kfar Saba 44425, Israel Tel: Fax: Internet General Information info@m-sys.com Sales and Technical Information techsupport@m-sys.com This document is for information use only and is subject to change without prior notice. M-Systems Flash Disk Pioneers Ltd. assumes no responsibility for any errors that may appear in this document. No part of this document may be reproduced, transmitted, transcribed, stored in a retrievable manner or translated into any language or computer language, in any form or by any means, electronic, mechanical, magnetic, optical, chemical, manual or otherwise, without prior written consent of M-Systems. M-Systems products are not warranted to operate without failure. Accordingly, in any use of the Product in life support systems or other applications where failure could cause injury or loss of life, the Product should only be incorporated in systems designed with appropriate and sufficient redundancy or backup features. Contact your local M-Systems sales office or distributor, or visit our website at to obtain the latest specifications before placing your order M-Systems Flash Disk Pioneers Ltd. All rights reserved. M-Systems, DiskOnChip, DiskOnChip Millennium, DiskOnKey, DiskOnKey MyKey, FFD, Fly-By, idiskonchip, idoc, mdiskonchip, mdoc, Mobile DiskOnChip, Smart DiskOnKey, SuperMAP, TrueFFS, udiskonchip and udoc are trademarks or registered trademarks of M- Systems Flash Disk Pioneers, Ltd. Other product names or service marks mentioned herein may be trademarks or registered trademarks of their respective owners and are hereby acknowledged. All specifications are subject to change without prior notice. 22 Installing TrueFFS for DiskOnChip in Windows CE (All Versions) 91-SR L Rev. 4.8

DOC-on-PCMCIA Evaluation Board

DOC-on-PCMCIA Evaluation Board DOC-on-PCMCIA Evaluation Board User Manual AUGUST 2003 91-UM-0803-00 DOCUMENT CONTROL INFORMATION DCO No.: Title Name Date Issued by: Product Management Engineer Liran Lanir August 1, 2003 2 User Manual

More information

DiskOnChip PCI Evaluation Board

DiskOnChip PCI Evaluation Board User Manual DiskOnChip PCI Evaluation Board JANUARY 2002 91-SR-010-04-7L REV 1.1 Table of Contents 1 Introduction... 3 1.1 Supported Devices...3 1.2 Features... 4 2 DiskOnChip PCI EVB Package Contents...

More information

Guidelines for Integrating DiskOnChip in a Host System

Guidelines for Integrating DiskOnChip in a Host System Guidelines for Integrating DiskOnChip in a Host System Application Note, August 2004 Arie Tal (arie.tal@m-systems.com) 1. SCOPE This document provides a quick overview of DiskOnChip technology and a fundamental

More information

DiskOnChip GANG Programmer Revision C

DiskOnChip GANG Programmer Revision C DiskOnChip GANG Programmer Revision C User Manual July 2004 91-SR-004-03-7L Rev. 5.3 DOCUMENT CONTROL INFORMATION DCO No.: Title Name Date Issued by: Product Manager Iris Brezner July 15, 2004 Approved

More information

IDE Flash Disk

IDE Flash Disk Product Specifications IDE 3000 2.5 Flash Disk Solid State IDE Drive Highlights M-Systems IDE 3000 2.5 is a solid-state IDE drive family based on nonvolatile NAND flash technology. The IDE 3000 2.5 family

More information

DiskOnChip 2000 MD2200, MD2201 Data Sheet

DiskOnChip 2000 MD2200, MD2201 Data Sheet DiskOnChip 2000 MD2200, MD2201 Data Sheet Features Single chip plug-and-play Flash Disk 2-72MB capacity (144MB in 1H99) Simple, easy to integrate interface 32-pin DIP JEDEC standard EEPROM compatible pin-out

More information

DiskOnChip GANG Programmer Rev. B2-1.23

DiskOnChip GANG Programmer Rev. B2-1.23 User Manual DiskOnChip GANG Programmer Rev. B2-1.23 MAR-2000 91-SR-004-03-7L REV. 4.0 Contents 1 Introduction...3 1.1 DiskOnChip GANG Programmer Overview...3 1.2 DiskOnChip Family of Products Overview...3

More information

idiskonchip (idoc) Flash Disk with IDE Interface

idiskonchip (idoc) Flash Disk with IDE Interface Flash Disk with IDE Interface Data Sheet, January 2006 Highlights idiskonchip (idoc) combines advanced and proven DiskOnChip technology with a standard IDE interface to complement the DiskOnChip product

More information

udiskonchip (udoc) Modular Flash Disk with USB 2.0 Interface

udiskonchip (udoc) Modular Flash Disk with USB 2.0 Interface udiskonchip (udoc) Modular Flash Disk with USB 2.0 Interface Data Sheet, October 2005 Highlights The performance of embedded systems in markets such as Single Board Computers (SBCs), thin clients, consumer

More information

User Manual. DiskOnChip Software Utilities

User Manual. DiskOnChip Software Utilities User Manual DiskOnChip Software Utilities NOVEMBER-2001 LIMITED WARRANTY (a) AMD warrants that the Licensed Software prior to modification and adaptation by Licensee will conform to the documentation provided

More information

Mobile DiskOnChip Plus 32/64MByte

Mobile DiskOnChip Plus 32/64MByte Data Sheet Mobile DiskOnChip Plus 32/64MByte Flash Disk with Protection and Security-Enabling Features Highlights Mobile DiskOnChip Plus 32/64MByte (256/512Mbit) is one of the industry s most efficient

More information

DiskOnChip IDE Pro. Flash Disk with IDE Interface. Highlights. Operating Temperature. Environmental Conditions. IDE Modes.

DiskOnChip IDE Pro. Flash Disk with IDE Interface. Highlights. Operating Temperature. Environmental Conditions. IDE Modes. Data Sheet DiskOnChip IDE Pro Flash Disk with IDE Interface Highlights DiskOnChip IDE Pro is a flash disk with an IDE interface. It combines advanced and proven DiskOnChip technology with a standard IDE

More information

DiskOnChip Millennium Plus 16/32/64MByte

DiskOnChip Millennium Plus 16/32/64MByte Data Sheet DiskOnChip Millennium Plus 16/32/64MByte Flash Disk with Protection and Security-Enabling Features Highlights DiskOnChip Millennium Plus is an award-winning member of M-Systems family of DiskOnChip

More information

AN2637 Application note

AN2637 Application note Application note How to store the Windows CE image on a NAND Flash memory Introduction Windows CE is a prevalent operating system for embedded systems, in particular, consumer electronics. Windows Mobile,

More information

RoHS Compliant. Specification. April 23, Version 1.5. USB-Disk ModuleⅡ AP-UMxxxxXXXXG-XXXX. Apacer Technology Inc.

RoHS Compliant. Specification. April 23, Version 1.5. USB-Disk ModuleⅡ AP-UMxxxxXXXXG-XXXX. Apacer Technology Inc. RoHS Compliant USB-Disk ModuleⅡ Specification April 23, 2009 Version 1.5 Apacer Technology Inc. 4 th Fl., 75 Xintai 5 th Rd., Sec.1, Hsichih, Taipei Hsien 221, Taiwan Tel: +886-2-2698-2888 Fax: +886-2-2698-2889

More information

S1C17 Family EEPROM Emulation Library Manual

S1C17 Family EEPROM Emulation Library Manual S1C17 Family EEPROM Emulation Library Manual Rev.1.1 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation,

More information

Statement of Volatility Xerox CiPress Production Inkjet System

Statement of Volatility Xerox CiPress Production Inkjet System Statement of Volatility Xerox CiPress Production Inkjet System Copyright 2006, 2008, 2009, 2010, 2011, 2012, 2013 Xerox Corporation Copyright protection claimed includes all forms and matters of copyrighted

More information

Designing with the DiskOnChip Millennium in a PC Environment

Designing with the DiskOnChip Millennium in a PC Environment P-DOC-0 pplication Note Designing with the DiskOnChip Millennium in a PC Environment Yuval Sofer Technical Marketing Engineer Dec-8 -SR-00--L Rev..0 Preface This application note describes how to integrate

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PB3Hw1 Driver Documentation Win32 Driver Model Revision A Corresponding

More information

Mobile DiskOnChip G3

Mobile DiskOnChip G3 512Mbit/1Gbit Flash Disk with MLC NAND and M-Systems x2 Technology Preliminary Data Sheet, June 2003 Highlights Mobile DiskOnChip G3 is one of the industry s most efficient storage solutions, using Toshiba

More information

How to use FlexMemory as D-Flash and EEPROM in KE1xF

How to use FlexMemory as D-Flash and EEPROM in KE1xF NXP Semiconductors Document Number: AN5338 Application Note Rev. 0, 09/2016 How to use FlexMemory as D-Flash and EEPROM in KE1xF 1. Introduction The FlexMemory (FlexNVM and FlexRAM) is available on NXP's

More information

AVR32401: AVR32 AP7 Linux Interfacing DataFlash. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR32401: AVR32 AP7 Linux Interfacing DataFlash. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR32401: AVR32 AP7 Linux Interfacing DataFlash Features JFFS2 file system Communication through SPI interface 1 Introduction This application note serves as an example of how to connect, set up and use

More information

HPS SoC Boot Guide - Cyclone V SoC Development Kit

HPS SoC Boot Guide - Cyclone V SoC Development Kit 2014.07.03 AN-709 Subscribe Introduction This document describes the available boot stages and source modes for both the HPS and FPGA fabric. The boot sequence is a multi-stage process, where each stage

More information

AN LPC1700 secondary USB bootloader. Document information. LPC1700, Secondary USB Bootloader, ISP, IAP

AN LPC1700 secondary USB bootloader. Document information. LPC1700, Secondary USB Bootloader, ISP, IAP LPC1700 secondary USB bootloader Rev. 01 8 September 2009 Application note Document information Info Keywords Abstract Content LPC1700, Secondary USB Bootloader, ISP, IAP This application note describes

More information

smxnand RTOS Innovators Flash Driver General Features

smxnand RTOS Innovators Flash Driver General Features smxnand Flash Driver RTOS Innovators The smxnand flash driver makes NAND flash memory appear to a file system like a disk drive. It supports single-level cell (SLC) and multi-level cell (MLC) NAND flash.

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PB3Oseh Driver Documentation Win32 Driver Model Revision A Corresponding

More information

Active Serial Memory Interface

Active Serial Memory Interface Active Serial Memory Interface October 2002, Version 1.0 Data Sheet Introduction Altera Cyclone TM devices can be configured in active serial configuration mode. This mode reads a configuration bitstream

More information

Kinetis Bootloader to Update Multiple Devices in a Field Bus Network

Kinetis Bootloader to Update Multiple Devices in a Field Bus Network Freescale Semiconductor, Inc. Document Number: AN5204 Application Note Rev. 0, 01/2016 Kinetis Bootloader to Update Multiple Devices in a Field Bus Network 1. Introduction This application note describes

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PcBis3 & Bis3Chan Driver Documentation Win32 Driver Model Revision

More information

Using the Kinetis Family Enhanced EEPROM Functionality

Using the Kinetis Family Enhanced EEPROM Functionality Freescale Semiconductor Application Note Document Number: AN4282 Rev. 1, 03/2015 Using the Kinetis Family Enhanced EEPROM Functionality by: Melissa Hunter Derrick Klotz 1 Introduction Some of the Kinetis

More information

High Performance Real-Time Operating Systems

High Performance Real-Time Operating Systems High Performance Real-Time Operating Systems FAT Filesystem User s Guide and Reference Manual Support Copyright Copyright (C) 2013 by SCIOPTA Systems AG All rights reserved No part of this publication

More information

USB Flash Drive. RoHS Compliant. AH321 Product Specifications. March 23, Version 2.5. Apacer Technology Inc.

USB Flash Drive. RoHS Compliant. AH321 Product Specifications. March 23, Version 2.5. Apacer Technology Inc. RoHS Compliant USB Flash Drive AH321 Product Specifications March 23, 2017 Version 2.5 Apacer Technology Inc. 1F, No.32, Zhongcheng Rd., Tucheng Dist., New Taipei City, Taiwan, R.O.C Tel: +886-2-2267-8000

More information

Using the ColdFire+ Family Enhanced EEPROM Functionality Melissa Hunter Derrick Klotz

Using the ColdFire+ Family Enhanced EEPROM Functionality Melissa Hunter Derrick Klotz Freescale Semiconductor Application Note Document Number: AN4306 Rev. 0, 05/2011 Using the ColdFire+ Family Enhanced EEPROM Functionality by: Melissa Hunter Derrick Klotz 1 Introduction The ColdFire+ family

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PmcB2B Driver Documentation Win32 Driver Model Revision A Corresponding

More information

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA Fax Est.

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA Fax Est. DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 IpTest WDF Driver Documentation For the IP-Test module Developed

More information

Porting WinCE 5.0 to your NXP BlueStreak MCU Board

Porting WinCE 5.0 to your NXP BlueStreak MCU Board Porting WinCE 5.0 to your NXP BlueStreak MCU Board Durgesh Pattamatta Staff Systems Engineer, Product Line Microcontrollers, NXP Semiconductors. http://www.standardics.nxp.com/support/microcontrollers/

More information

Programming and Evaluation Tool for Serial EEPROMs

Programming and Evaluation Tool for Serial EEPROMs EasyPro 3.2 Evaluation Board User's Manual EVAL BOARD USER S MANUAL Programming and Evaluation Tool for Serial EEPROMs What is EasyPRO? EasyPRO is an easy-to-use, software-driven device programmer that

More information

Module 8: Customizing the OS Design

Module 8: Customizing the OS Design Module 8: Customizing the OS Design Catalog 1 Module 8: Customizing the OS Design 8-1 Catalog Overview 8-2 The CE 6.0 Shell 8-3 The SDK Module 8: Customizing the OS Design Catalog 2 Information in this

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PciLvds2R/T Driver Documentation Win32 Driver Model Revision A

More information

Keil TM MDK-ARM Quick Start for. Holtek s HT32 Series Microcontrollers

Keil TM MDK-ARM Quick Start for. Holtek s HT32 Series Microcontrollers Keil TM MDK-ARM Quick Start for Holtek s Microcontrollers Revision: V1.10 Date: August 25, 2011 Table of Contents 1 Introduction... 5 About the Quick Start Guide... 5 About the Keil MDK-ARM... 6 2 System

More information

APPLICATION NOTE. Atmel AT03304: SAM D20 I 2 C Slave Bootloader SAM D20. Description. Features

APPLICATION NOTE. Atmel AT03304: SAM D20 I 2 C Slave Bootloader SAM D20. Description. Features APPLICATION NOTE Atmel AT03304: SAM D20 I 2 C Slave Bootloader SAM D20 Description As many electronic designs evolve rapidly there is a growing need for being able to update products, which have already

More information

Spring 2017 :: CSE 506. Device Programming. Nima Honarmand

Spring 2017 :: CSE 506. Device Programming. Nima Honarmand Device Programming Nima Honarmand read/write interrupt read/write Spring 2017 :: CSE 506 Device Interface (Logical View) Device Interface Components: Device registers Device Memory DMA buffers Interrupt

More information

Flash File Systems Overview

Flash File Systems Overview Table of contents 1.0 Overview 3 1.1 Flash architecture 3 1.1.1 Partitions 3 1.1.2 Blocks 3 1.2 Programming data 3 1.3 Data integrity 4 2.0 Flash file system functions 4 2.1 Wear leveling 4 2.2 Reclaim

More information

Secure Microcontrollers for Smart Cards. AT90SC Summary

Secure Microcontrollers for Smart Cards. AT90SC Summary Features High-performance, Low-power 8-bit AVR RISC Architecture 120 Powerful Instructions Most Single Clock Cycle Execution Up to 64K Bytes Flash Program Memory Endurance: 10K Write/Erase Cycles Up to

More information

WinCE for LPC3250. BUMMS China Nov PDF created with pdffactory Pro trial version

WinCE for LPC3250. BUMMS China Nov PDF created with pdffactory Pro trial version WinCE for LPC3250 BUMMS China Nov 2008 Contents 1. Getting started WinCE with LPC3250 2. WinCE6.0 basic knowledge 3. WinCE6.0 BSP development 4. Reference 2 Getting started WinCE with LPC3250 3 Setup WinCE6.0

More information

CHAPTER 11: IMPLEMENTING FILE SYSTEMS (COMPACT) By I-Chen Lin Textbook: Operating System Concepts 9th Ed.

CHAPTER 11: IMPLEMENTING FILE SYSTEMS (COMPACT) By I-Chen Lin Textbook: Operating System Concepts 9th Ed. CHAPTER 11: IMPLEMENTING FILE SYSTEMS (COMPACT) By I-Chen Lin Textbook: Operating System Concepts 9th Ed. File-System Structure File structure Logical storage unit Collection of related information File

More information

File System: Interface and Implmentation

File System: Interface and Implmentation File System: Interface and Implmentation Two Parts Filesystem Interface Interface the user sees Organization of the files as seen by the user Operations defined on files Properties that can be read/modified

More information

AN4491 Application note

AN4491 Application note Application note BlueNRG, BlueNRG-MS updater Introduction Note: This document describes the updater functionality of BlueNRG and BlueNRG-MS devices. The document content is valid for both BlueNRG and BlueNRG-MS

More information

AT89C5131 Starter Kit... Software User Guide

AT89C5131 Starter Kit... Software User Guide AT89C5131 Starter Kit... Software User Guide Table of Contents Section 1 Introduction... 1-1 1.1 Abbreviations...1-1 Section 2 Getting Started... 2-3 2.1 Hardware Requirements...2-3 2.2 Software Requirements...2-3

More information

FLASH PROGRAMMER FP-8903 VER 2.00 USER S MANUAL

FLASH PROGRAMMER FP-8903 VER 2.00 USER S MANUAL FLASH PROGRAMMER FP-8903 VER 2.00 USER S MANUAL FP8903 V2.00 DOC R.2.0 1 TABLE OF CONTENTS SECTION CONTENTS PAGE 1 INTRODUCTION 1.1 MANUAL CONTENTS 03 1.2 PROGRAMMER AND ACCESSORIES 03 2 FEATURES 04 3

More information

TotalShredder USB. User s Guide

TotalShredder USB. User s Guide TotalShredder USB User s Guide Copyright Notice No part of this publication may be copied, transmitted, stored in a retrieval system or translated into any language in any form or by any means without

More information

S1C17 Family Application Library S1C17 Series Steps Calculation Library

S1C17 Family Application Library S1C17 Series Steps Calculation Library S1C17 Family Application Library S1C17 Series Steps Calculation Library Rev. 2.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PciLvds8R/T Driver Documentation Win32 Driver Model Revision A

More information

Statement of Volatility XEROX 700 Digital Color Press

Statement of Volatility XEROX 700 Digital Color Press Statement of Volatility XEROX 700 Digital Color Press Copyright 2006, 2008, 2009 Xerox Corporation Copyright protection claimed includes all forms and matters of copyrighted material and information now

More information

User's Guide. User Notice. Copyright

User's Guide. User Notice. Copyright User Notice Except in case of improper use, we provide a 1-year guarantee of free service. If this product is defective, please return it to the dealer from whom the product was originally purchased, together

More information

USB Flash Drive. RoHS Compliant. AH321 Specifications. February 17 th, Version 1.7. Apacer Technology Inc.

USB Flash Drive. RoHS Compliant. AH321 Specifications. February 17 th, Version 1.7. Apacer Technology Inc. RoHS Compliant USB Flash Drive AH321 Specifications February 17 th, 2015 Version 1.7 Apacer Technology Inc. 1F, No.32, Zhongcheng Rd., Tucheng Dist., New Taipei City, Taiwan, R.O.C Tel: +886-2-2267-8000

More information

Typical File Extensions File Structure

Typical File Extensions File Structure CS 355 Operating Systems File Systems File Systems A file is a collection of data records grouped together for purpose of access control and modification A file system is software responsible for creating,

More information

nrf5x Command Line Tools v9.4.0

nrf5x Command Line Tools v9.4.0 nrf5x Command Line Tools v9.4.0 User Guide v1.3 Doc. ID 4397_662 v1.3 2017-04-24 Contents Contents Revision history... 3 Chapter 1: Introduction...4 Chapter 2: Installing the nrf5x Command Line Tools...5

More information

nrf5x Command Line Tools v9.2.0

nrf5x Command Line Tools v9.2.0 nrf5x Command Line Tools v9.2.0 User Guide v1.1 Doc. ID 4397_662 v1.1 2016-12-14 Contents Contents Revision history... 3 Chapter 1: Introduction...4 Chapter 2: Installing the nrf5x Command Line Tools...5

More information

User Guide. Storage Executive Command Line Interface. Introduction. Storage Executive Command Line Interface User Guide Introduction

User Guide. Storage Executive Command Line Interface. Introduction. Storage Executive Command Line Interface User Guide Introduction User Guide Storage Executive Command Line Interface Introduction Introduction This guide describes how to use Micron's Storage Executive command line interface (CLI) to monitor, manage, and configure Micron

More information

Reference Manual VCM-DOC-1. Bootable DiskOnChip Module for the PC/104 Bus MVCMDOC1

Reference Manual VCM-DOC-1. Bootable DiskOnChip Module for the PC/104 Bus MVCMDOC1 Reference Manual VCM-DOC-1 Bootable DiskOnChip Module for the PC/104 Bus MVCMDOC1 VCM-DOC-1 Bootable DiskOnChip Module for the PC/104 Bus REFERENCE MANUAL Doc. Rev. 04/22/2003 VERSALOGIC CORPORATION WWW.VERSALOGIC.COM

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 User Manual PCI LVDS 8R Driver Documentation Revision A Corresponding

More information

CMT2110A/2210A One-Way RF Link Development Kits User s Guide

CMT2110A/2210A One-Way RF Link Development Kits User s Guide AN103 CMT2110A/2210A One-Way RF Link Development Kits User s Guide Introduction CMT2110A/2210A One-Way RF Link Development Kits (Development Kits) are a set of the hardware and software tools designed

More information

Atmel-Synario CPLD/PLD Design Software ATDS1100PC ATDS1120PC ATDS1130PC ATDS1140PC. Features. Description

Atmel-Synario CPLD/PLD Design Software ATDS1100PC ATDS1120PC ATDS1130PC ATDS1140PC. Features. Description Features Comprehensive CPLD/PLD Design Environment User-friendly Microsoft Windows Interface (Win 95, Win 98, Win NT) Powerful Project Navigator Utilizes Intelligent Device Fitters for Automatic Logic

More information

& WizChan. Driver Documentation

& WizChan. Driver Documentation DYNAMIC ENGINEERING 150 DuBois St. Suite C, Santa Cruz, CA 95060 831-457-8891 Fax 831-457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 PmcWiz & WizChan Driver Documentation Win32 Driver Model

More information

USB-Disk Module 3. RoHS Compliant. Specification. January 13, Preliminary. Apacer Technology Inc.

USB-Disk Module 3. RoHS Compliant. Specification. January 13, Preliminary. Apacer Technology Inc. RoHS Compliant USB-Disk Module 3 Specification January 13, 2011 Preliminary Apacer Technology Inc. 4 th Fl., 75 Xintai 5 th Rd., Sec.1, Hsichih, New Taipei City, Taiwan 221 Tel: +886-2-2698-2888 Fax: +886-2-2698-2889

More information

USB Bootloader GUI User s Guide

USB Bootloader GUI User s Guide Freescale Semiconductor User s Guide Document Number: MC9S08JS16UG Rev. 0, 10/2008 USB Bootloader GUI User s Guide by: Derek Liu Applications Engineering China 1 Overview The MC9S08JS16 (JS16) supports

More information

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est

DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif Fax Est DYNAMIC ENGINEERING 435 Park Dr., Ben Lomond, Calif. 95005 831-336-8891 Fax 831-336-3840 http://www.dyneng.com sales@dyneng.com Est. 1988 PmcPario Driver Documentation Win32 Driver Model Revision A Corresponding

More information

CS3600 SYSTEMS AND NETWORKS

CS3600 SYSTEMS AND NETWORKS CS3600 SYSTEMS AND NETWORKS NORTHEASTERN UNIVERSITY Lecture 11: File System Implementation Prof. Alan Mislove (amislove@ccs.neu.edu) File-System Structure File structure Logical storage unit Collection

More information

AVR1315: Accessing the XMEGA EEPROM. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR1315: Accessing the XMEGA EEPROM. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR1315: Accessing the XMEGA EEPROM Features I/O-mapped access Memory-mapped access Split erase and write operations supported Efficient page-oriented access Driver source code included 1 Introduction

More information

S1C17 Family Application Note S1C17 Series Boot Loader Sample Software

S1C17 Family Application Note S1C17 Series Boot Loader Sample Software S1C17 Family Application Note S1C17 Series Boot Loader Sample Software Rev.1.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for

More information

APPLICATION NOTE. Atmel AVR116: Wear Leveling on DataFlash. 32-bit Atmel Microcontrollers. Features. Description. Wear leveling

APPLICATION NOTE. Atmel AVR116: Wear Leveling on DataFlash. 32-bit Atmel Microcontrollers. Features. Description. Wear leveling APPLICATION NOTE Atmel AVR116: Wear Leveling on DataFlash 32-bit Atmel Microcontrollers Features Wear leveling Average the program/erase operations in different blocks Write not need be preceded by an

More information

DYNAMIC ENGINEERING. 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est.

DYNAMIC ENGINEERING. 150 DuBois, Suite C Santa Cruz, CA (831) Fax (831) Est. DYNAMIC ENGINEERING 150 DuBois, Suite C Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 PMC Biserial S311 Software Manual Driver Documentation Developed

More information

Partial Lock Writer User s Guide

Partial Lock Writer User s Guide Partial Lock Writer User s Guide September 2005 Copyright 2005 by HOLTEK SEMICONDUCTOR INC. All rights reserved. Printed in Taiwan. No part of this publication may be reproduced, stored in a retrieval

More information

PM9263 Getting Started with Windows CE 6.0

PM9263 Getting Started with Windows CE 6.0 PM9263 Getting Started with Windows CE 6.0 embedded development tools Acknowledgements February, 2009 Ronetix has made every attempt to ensure that the information in this document is accurate and complete.

More information

MLC. Mini SATA III Flash Module. HERMES-JI Series. Product Specification APRO MLC MINI SATA III FLASH MODULE

MLC. Mini SATA III Flash Module. HERMES-JI Series. Product Specification APRO MLC MINI SATA III FLASH MODULE MLC Mini SATA III Module HERMES-JI Series Product Specification APRO MLC MINI SATA III FLASH MODULE Version 01V2 Document No. 100-xBMSM-JJICTMB March 2016 APRO CO., LTD. Phone: +88628226-1539 Fax: +88628226-1389

More information

Initial Bootloader. On power-up, when a computer is turned on, the following operations are performed:

Initial Bootloader. On power-up, when a computer is turned on, the following operations are performed: Initial Bootloader Introduction On power-up, when a computer is turned on, the following operations are performed: 1. The computer performs a power on self test (POST) to ensure that it meets the necessary

More information

USB Flash Drive. RoHS Compliant. AH322 Specifications. November 26, Version 1.9. Apacer Technology Inc.

USB Flash Drive. RoHS Compliant. AH322 Specifications. November 26, Version 1.9. Apacer Technology Inc. RoHS Compliant USB Flash Drive AH322 Specifications November 26, 2015 Version 1.9 Apacer Technology Inc. 1F, No.32, Zhongcheng Rd., Tucheng Dist., New Taipei City, Taiwan, R.O.C Tel: +886-2-2267-8000 Fax:

More information

Windows Device Driver and API Reference Manual

Windows Device Driver and API Reference Manual Windows Device Driver and API Reference Manual 797 North Grove Rd, Suite 101 Richardson, TX 75081 Phone: (972) 671-9570 www.redrapids.com Red Rapids Red Rapids reserves the right to alter product specifications

More information

Kinetis Flash Tool User's Guide

Kinetis Flash Tool User's Guide NXP Semiconductors Document Number: MBOOTFLTOOLUG User's Guide Rev 1, 05/2018 Kinetis Flash Tool User's Guide Contents Contents Chapter 1 Introduction...4 Chapter 2 System Requirements... 5 Chapter 3 Tool

More information

DYNAMIC ENGINEERING 150 DuBois, Suite 3 Santa Cruz, CA (831) Fax (831) Est

DYNAMIC ENGINEERING 150 DuBois, Suite 3 Santa Cruz, CA (831) Fax (831) Est DYNAMIC ENGINEERING 150 DuBois, Suite 3 Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 www.dyneng.com sales@dyneng.com Est. 1988 PciAlt Driver Documentation Win32 Driver Model Revision D Corresponding

More information

Xerox WorkCentre Statement of Volatility Version 1.0

Xerox WorkCentre Statement of Volatility Version 1.0 Xerox WorkCentre 4265 Statement of Volatility Version 1.0 June 3, 2016 Notice Xerox WorkCentre 4265 Statement of Volatility This document describes the locations, capacities and contents of volatile and

More information

S A N D I S K F L A S H M E M O R Y C A R D S W E A R L E V E L I N G

S A N D I S K F L A S H M E M O R Y C A R D S W E A R L E V E L I N G WHITE PAPER SANDISK FLASH MEMORY CARDS WEAR LEVELING October 2003 140 Caspian Court Sunnyvale, California 94089 Phone: 408-542-0500 Fax: 408-542-0503 SanDisk Corporation general policy does not recommend

More information

Statement of Volatility WorkCentre 6505

Statement of Volatility WorkCentre 6505 Statement of Volatility WorkCentre 6505 Copyright 2006, 2008, 2009 2010 2011 Xerox Corporation Copyright protection claimed includes all forms and matters of copyrighted material and information now allowed

More information

Using the PowerQUICC II Auto-Load Feature

Using the PowerQUICC II Auto-Load Feature Freescale Semiconductor Application Note Document Number: AN3352 Rev. 0, 01/2007 Using the PowerQUICC II Auto-Load Feature by David Smith/Patrick Billings Field Application Engineering/DSD Applications

More information

ZCRMZNICE01ZEMG Crimzon In-Circuit Emulator

ZCRMZNICE01ZEMG Crimzon In-Circuit Emulator Quick Start Guide QS006602-0408 Introduction Zilog s ZCRMZNICE01ZEMG Crimzon (ICE), shown in Figure 1, provides Crimzon chip family emulation with a Trace and Event system for program debugging using Zilog

More information

Computers in Business: Concepts in Hardware and Software

Computers in Business: Concepts in Hardware and Software Computers in Business: Concepts in and Software University for Development Studies (UDS) January 31, 2012 NB: Listen to what I say, What matters is not what is in the notes. Assignments are very essential

More information

AN-1471 APPLICATION NOTE

AN-1471 APPLICATION NOTE AN-47 APPLICATION NOTE One Technology Way P.O. Box 906 Norwood, MA 02062-906, U.S.A. Tel: 78.329.4700 Fax: 78.46.33 www.analog.com ADuCM4050 Flash EEPROM Emulation by Pranit Jadhav and Rafael Lajara INTRODUCTION

More information

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA (831) Fax (831) Est.

DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA (831) Fax (831) Est. DYNAMIC ENGINEERING 150 DuBois St., Suite C Santa Cruz, CA 95060 (831) 457-8891 Fax (831) 457-4793 http://www.dyneng.com sales@dyneng.com Est. 1988 DartBase & DartChan Driver Documentation Win32 Driver

More information

M2351 Trusted Boot. Application Note for 32-bit NuMicro Family

M2351 Trusted Boot. Application Note for 32-bit NuMicro Family M2351 Trusted Boot Application Note for 32-bit NuMicro Family Document Information Abstract Apply to Introduce the M2351 Secure Bootloader, Secure Boot verification mechanism, and how it works to perform

More information

GNU17V3 Setup Guide. Rev.2.0

GNU17V3 Setup Guide. Rev.2.0 GNU17V3 Setup Guide Rev.2.0 Evaluation board/kit and Development tool important notice 1. This evaluation board/kit or development tool is designed for use for engineering evaluation, demonstration, or

More information

DiskOnChip -Based MCP

DiskOnChip -Based MCP DiskOnChip -Based MCP Including Mobile DiskOnChip G3 and Mobile RAM Data Sheet, February 2004 Highlights DiskOnChip-based MCP (Multi-Chip Package) is a complete memory solution. Efficiently packed in a

More information

Statement of Volatility Xerox igen TM 150 Digital Press

Statement of Volatility Xerox igen TM 150 Digital Press Statement of Volatility Xerox igen TM 150 Digital Press Copyright 2006, 2008, 2009, 2010, 2011, 2012 Xerox Corporation Copyright protection claimed includes all forms and matters of copyrighted material

More information

Contents. Notice. System Requirements. User Notice. Copyright. Software installation. FAT32 Format Utility. One Button File Backup.

Contents. Notice. System Requirements. User Notice. Copyright. Software installation. FAT32 Format Utility. One Button File Backup. Contents Notice System Requirements User Notice Copyright Software installation FAT32 Format Utility One Button File Backup Quick Launch Quick File Backup File Backup File Backup File Restore Erase File

More information

The Early System Start-Up Process. Group Presentation by: Tianyuan Liu, Caiwei He, Krishna Parasuram Srinivasan, Wenbin Xu

The Early System Start-Up Process. Group Presentation by: Tianyuan Liu, Caiwei He, Krishna Parasuram Srinivasan, Wenbin Xu The Early System Start-Up Process Group Presentation by: Tianyuan Liu, Caiwei He, Krishna Parasuram Srinivasan, Wenbin Xu 1 Boot Process Booting is the initialization of a computerized system In Linux,

More information

CTWP005: Write Abort Handling for Cactus Technologies Industrial-Grade Flash-Storage Products

CTWP005: Write Abort Handling for Cactus Technologies Industrial-Grade Flash-Storage Products CTWP005: Write Abort Handling for Cactus Technologies Industrial-Grade Flash-Storage Products Covered Products: -203,-303,-503 CF cards, -900S SATA products, -806,-808 SD cards, -300 USB products 1 Introduction

More information

AT09381: SAM D - Debugging Watchdog Timer Reset. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE

AT09381: SAM D - Debugging Watchdog Timer Reset. Introduction. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AT09381: SAM D - Debugging Watchdog Timer Reset APPLICATION NOTE Introduction This application note shows how the early warning interrupt can be used to debug a WDT reset

More information

Technical Note. Reset Configurations for MT25Q, MT25T, and N25Q Flash Memory Devices. Introduction

Technical Note. Reset Configurations for MT25Q, MT25T, and N25Q Flash Memory Devices. Introduction Technical Note Reset onfigurations for MT25Q, MT25T, and N25Q Flash Memory Devices Introduction This technical note provides a list of the reset configurations available for the MT25Q, MT25T, and N25Q

More information

AN2061 APPLICATION NOTE

AN2061 APPLICATION NOTE APPLICATION NOTE EEPROM Emulation with ST10F2xx Description External EEPROMs are often used in automotive applications to store adaptative/evolutive data. On the other hand, the Microcontroller used in

More information

Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions

Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions Simplex 4190 TrueSite Workstation (TSW) Software Upgrade Instructions Introduction This publication describes the software upgrade procedure for the Simplex 4190 TrueSite Workstation (TSW). Inspecting

More information