I have 2 SD cards 2GB and 16GB, both formated as FAT32. 2GB works fine, 16 fails initialization.
It fails to select FAT32
Code:
	Select Case (DISK_buffer[450])
		Case $01
			DISK_type = FAT12 : FAT_error = CE_CARDFAT12
		Case $04, $06, $0e
			DISK_type = FAT16
		Case $0b, $0c
			DISK_type = FAT32
		Case Else
			FAT_error = CE_BAD_PARTITION
	End Select
Goes straight to FAT_error = CE_BAD_PARTITION
Tried to select FAT32, but then fails later..
As far as I understand up to 32GB should be supported.
Any update on that?