STRUCTURE SDCARD

The front SDCARD needs to match the format they are made at the factory, which is a special type of FAT32 (or FAT16). If you’ve formatted your card for FAT32, extFAT, EXT2/3, or any other file system, these will likely not be recognized by STRUCTURE as most formatters put a small first partition that is not compatible.

We are working to find a few simple GUI based utilities for doing this in Win/OSX, so stay tuned. If you are stuck, please email us to expedite our work on this. We are also going to be adding a format option in the SYSTEM menu to make this even easier!

For OSX users who are comfortable with the ‘terminal’ and are okay with MAKING SURE you work on the correct disk, here are some manual instructions to format an external card that is tested.

1) Open the “terminal” app in OSX

2) type “diskutil list external physical” Which should return something similar:

/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *31.1 GB disk2 1: Windows_FAT_32 NONAME 31.1 GB disk2s1

Here you can see disk2, but verify this is your SD by the volume name (in our case NONAME). The reason this doesn’t work is the FDisk_partion_scheme at the beginning of the partition map. So, to fix this we do:

3) “diskutil unmountDisk disk2”

This will unmount the disk (replace disk2 with whatever your disk is on the /dev/disk2 listed above). The disk needs to be unmounted to work on it.

4) “sudo newfs_msdos -F 32 /dev/disk2”

You’ll need to put in your root password to run that, again, /dev/disk2 is changed to match your system

5) let’s remount and check it: “diskutil mount /dev/disk2”
“diskutil list external physical”

Which now looks like this:

/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER 0: NO NAME *31.1 GB disk2

Which is now correct. You’l be able to use this card with STRUCTURE. Notice just one partition now.