Hello!
I'm using M52259DEMO and CodeWarrior 7.1 with 7.1.1 patch
When I'm flashing demo uTaskerV1.3_M52259DEMO_USB_ETHERNET.s19 into my boards, everything is OK
And when I trying to build the uTasker sources by myself and flash the result - everything is OK too except for the ftp. It hangs after LIST command. And after 2 seconds of hanging watchdog timer resets the board. Disabling watchdog do not solve the problem - board just has not been automatically reseted after hang
The behavior is the same like described in this topic -
http://www.utasker.com/forum/index.php?topic=682.0So I think that I have wrong filesystem configuration too.
But I did not changed anything there:
#define PARAMETER_BLOCK_START 0x21000 // {45} FLASH location at 132k start
#define uFILE_START 0x23000 // FLASH location at 140k start
#define SINGLE_FILE_SIZE (1*FLASH_GRANULARITY) // each file a multiple of 4k
#define FILE_SYSTEM_SIZE (93*SINGLE_FILE_SIZE) // 374k reserved for file system
I tried to change size in last line to 14*SINGLE_FILE_SIZE, but the behavior remains the same
Where can be the problem?
Thanks