I just wanted to point out that the fsaccess open() method uses a hard-coded drive, which means you can only use fsaccess with the dataflash. See below
Code:
int open(const char *pathname, int flags, ...)
{
...
// select dataflash
nav_drive_set( LUN_ID_AT45DBX_MEM );
...
}
It seems a bette choice, considering the flexibility provided by the CTRL_ACCESS service, would have been to pass a parameter with the LUN ID to this method.
It looks like I will have to write an identical method with this parameter, so I will post it here later.
Where would I go to recommend changes to the software framework such as this one?
===>DavidC |