Thanks FrankL Is there any specific document for those difference because when I googled I couldn't find any.... I had downloaded latest library V1.05 and tried by adding to same application project still that error continued. It got resolved when I added Pico_FDL files and removed FDL library files. Now I'm facing issue in BLANK_CHECK command. When I debug and check, flow is getting struck in PFDL_Execute function for Blank Check command. Function is as follows: uint8_t R_FDL_BlankCheck(void) { pfdl_request_t requester; pfdl_status_t ret; /* ---- Setting for blank check ---- */ requester.command_enu = PFDL_CMD_BLANKCHECK_BYTES; requester.index_u16 = TARGET_BLOCK; requester.bytecount_u16 = WRITE_SIZE; ret = PFDL_Execute(&requester); /* Blank check */ /* ---- Waiting for command finish ---- */ while(ret == PFDL_BUSY) { ret = PFDL_Handler(); /* Status check process */ } return ret; } where WRITE_SIZE is 1 TARGET_BLOCK is (0x0000) Can I know what could be the reason ?? Thanks for your valuable answer FrankL
↧