Quote Originally Posted by mackrackit View Post
PBP 2.60 and SDFS work fine together. I have not had to change anything.
Nice !! What about programming memory space? Is it true that PBP 2.60 compiles the program with less programming words in a more compact manner? SDFS takes many words of programming space. I think the FAT16 version takes around 12k words (I don't remember the exact number). Do you see any space utilization improvements with PBP 2.60?


Quote Originally Posted by mackrackit View Post
I do plan to try to make use of the ARRAY WRITE feature of PBP 2.60 with the next SD project. If that works like I think it will tehn the basic routines will be much cleaner. Imagine changing the SD write array length on the fly!!!
Are you referring to the FAT_BUFFER_SIZE constant?

Code:
' Create constants and variables used by the FAT subroutines
FAT_BUFFER_SIZE	Con	MEDIA_SECTOR_SIZE
I replaced its value from 512 to 16 bytes in my program because it was killing my 18F4550 RAM memory. I left MEDIA_SECTOR_SIZE equal to 512 like it should be.

Robert