Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
648 views

How can I use SD card for data logging 16bit data at 48ksps

Background My board incorporated an STM32 microcontroller with an SD/MMC card on SPI and samples analogue data at 48ksps. I am using the Keil Real-time Library RTX kernel, and ELM FatFs I have a ...
4
votes
2answers
483 views

Shrinking or partially truncating a file in DOS/FAT

I've been tasked with writing a data collection program for a Unitech HT630, which runs a proprietary DOS operating system that can run executables compiled for 16-bit MS DOS with some restrictions. ...
3
votes
1answer
65 views

File.SetAttributes() not working on USB key as expected

FileAttributes attrs = File.GetAttributes( path); File.SetAttributes( path, FileAttributes.Hidden ); attrs = File.GetAttributes( path); This code snippet works on my NTFS file system ...
3
votes
2answers
31 views

Weird directory entries in FAT file system

So I'm trying to figure out how the FAT FS works and got confused by the root directory table. I have two files in the partition: test.txt and innit.eh which results in the following table: The ...
3
votes
2answers
96 views

Purposefully Corrupting a FAT File System?

Is there a way to purposefully corrupt a FAT file system using only Win32 calls or must you do it at lower level? We're encountering FAT corruption on a WinCE 5.0 device and have written a utility to ...
3
votes
2answers
116 views

Where do filesystems like Reiser, NTFS, etc store the file tables?

Where do filesystems like Reiser, NTFS, etc store the file tables? We're looking at writing our own filesystem, and wondering if we should use a single file to hold it all using btree's or use ...
3
votes
3answers
522 views

There is in Windows file systems a pre computed hash for each file?

I want to search a file duplicate by its hash. For performance purposes I want to know if there is a stored hash/checksum for each file in NTFS/FAT file systems. If there is, I don't have to compute ...
3
votes
3answers
531 views

Weird standard for FAT32 >4gb files

I have recently encountered an embedded system with IDE drives that are FAT32 but have >4gb files. It appears to do this by setting the file size in the 32byte directory entry to how many bytes the ...
2
votes
2answers
55 views

How to share access to a FAT32 Filesystem

I am working on an embedded device that uses an SD-Card for storage and needs to allow a PC to access that SD-Card over USB. The best approach I could come up with is virtualizing the disk and ...
2
votes
1answer
405 views

OSX Snow Leopard: Build boost 1.47.0 for 32 and 64 bit

I am going crazy...I am currently trying to upgrade boost for my project from 1.44.0 to 1.47.0 on osx snow leopard.- I want to build it with the following command: ./b2 macosx-version=10.6 ...
2
votes
2answers
1k views

faking symbolic links on a fat32 formatted storage

I know FAT32, as well as FAT16/12 neither support symbolic links nor hard-links. However I came up with this idea: The FAT specification describes that every file is associated with a ...
2
votes
5answers
259 views

FAT File system and lots of writes

I am considering using a FAT file system for an embedded data logging application. The logger will only create one file to which it continually appends 40 bytes of data every minute. After a couple ...
2
votes
0answers
130 views

How to perform incremental tar backup of FAT filesystem

I use tar --listed-incremental=... to perform incremental backups on my computer, and for the most part it works like a charm. However, it doesn't seem to play well with my old FAT partition. It ...
1
vote
2answers
40 views

FILESTREAM in SQL Server 2008 cannot be used on FAT systems?

According to this article: http://technet.microsoft.com/en-us/library/bb933993.aspx the FILESTREAM type is used for NTFS systems. Does that mean it can't be used on FAT systems?
1
vote
1answer
72 views

How to build fat gcc46 libstdc++ on OS X?

I have successfully built and installed gcc 4.6.1 on my OS X box, but I can't seem to get it to create a fat/universal libstdc++ library for me. How do I make it do that? The default ...
1
vote
2answers
432 views

File Allocation Table Reading

I am working on a custom FAT file system explorer and things have been going quite well. However, I want to know if there is a better way to efficiently read/write to the chainmap. For large devices, ...
1
vote
1answer
197 views

Does the FAT filesystem have a signature?

Given the following BPB: The "MSWIN4.1" string is just the "OEM ID" field, and by Microsoft documentation it should not be used to identify FAT volumes. The "FAT32 " string is the BS_FilSysType ...
0
votes
1answer
22 views

NTFS and FAT : the difference internally [closed]

I've been searching about this on google, but i get a lot of external information like :it is self healing and more stable etc etc.. Can someone explain the internal workings of the two systems, in ...
0
votes
1answer
97 views

FAT12/FAT16 - what determines the sector counts? [closed]

Currently i am reading the Ramdisk source code. And in a RamDiskFormatDisk function, i get a problem. A piece of code is as following: if (fatEntries > 4087) { fatType = 16; fatSectorCnt ...
0
votes
1answer
106 views

Wince 6.0 file system corruption - directories appear to be recursing

We have a mature Wince 6.0 R2 custom device that is capable of downloading files via WiFi and storing them in a NAND flash FAT file system partition. This has been running on over 15000 devices ...
0
votes
0answers
60 views

fat viewer - FAT32 Viewer needed

Can anyone recommend Windows based FAT32 viewer? What I need to see is the map of allocated/free blocks on SD card connected to my PC and it would be nice to see what blocks are allocated for what ...
0
votes
2answers
310 views

Programatically change FAT32 volume serial number

How do I programatically change Volume Serial of a Fat32 partition from C#. I found this example, but it is written with C++ which I don't read well. Could someone please answer a C# code snippet? ...
0
votes
1answer
225 views

SDHC card SPI initialisation

I'm working on an embedded system that currently only supports SDC v1 cards. As it's getting harder and harder to find <2G cards, I'm trying to add support for SDHC card. The communication with the ...
0
votes
0answers
61 views

FAT filesystemm vs Berkly Fast File System [closed]

Hi for my Operating systems class my teacher asked us this question: What are the main limitations of the FAT file system that prevents it from being useful for today's disks? and How did FFS solve ...
0
votes
3answers
108 views

how FAT let me know what to load next cluster hint by file's first cluster?

I am reading brokenthorn's OS Dev tutorial http://www.brokenthorn.com/Resources/OSDev6.html I stuck at this for several days.; to load "stage2.sys", search root directory "stage2 sys". root ...
0
votes
2answers
449 views

How to read FAT Table in Assembly Language

NC - Norton Commander I should write a program like NC. I need to access Fat Table in Assembly to show files and directories in my program. Does anybody know how I can access Fat in assembly( both ...
0
votes
1answer
323 views

C Programming with ARM - Output and input of struct to a file

I am having a bit of a problem with a struct within a program I am writing. Background; I am developing code in C on an ARMv7 chip. The system has an SD card with FAT16 filesystem for file access. I ...
0
votes
1answer
51 views

Attributes in FAT (File allocation table)

Can someone please tell me where are the attributes per file allocated? Thanks
0
votes
2answers
223 views

Fat ASP.NET MVC Controllers

I have been reading about "Fat Controllers" but most of the articles out there focus on pulling the service/repository layer logic out of the controller. However, I have run into a different situation ...
0
votes
1answer
293 views

Verifying T-FAT on WinCE 5.0

We were having serious problems with corrupt files on our flash based FAT filesystem on WinCE 5.0. We believed that the files got corrupted because the WinCE device was turned off while writing to the ...
0
votes
3answers
809 views

how to query a folder structure (files, directories)

I need to query folder structure. In other words I need to be able to access directory structure by SQL. I'm thinking of that there should be some OLE DB provider or some ODBC driver for that purpose. ...
0
votes
1answer
107 views

Can anyone tell me what the authors mean on this line?

i was going through this link: FAT16 Basics to Assemble Clusters. I have read the structures involved in defining a directory entry in FAT. Now when giving the example for a FAT16 File, it says the ...
0
votes
1answer
118 views

Programmatically accessing the Windows file allocation table

How can I programmatically access the file allocation entries (FAT) in Windows? I have read the articles which mention reading entries at a particular address in the harddisk, but how can I read those ...
-2
votes
1answer
22 views

Do I need FAT on both ends of a USB link?

I have a product consisting of two boxes, both running an RTOS (not picked yet, say FreeRTOS): Box A will have: an SD card and a FAT stack an "external" USB device port with MSD to allow PC access ...