Cypress Perform

Home > Design Support > Cypress Developer CommunityTM > Cypress Forums > USB Controllers > XferData

Bookmark and Share
Cypress Developer CommunityTM
Forums | Videos | Blogs | Training | Rewards Program | Community Components



XferData
Moderator:
RSKV

Post Reply
Follow this topic



XferData

JumpeiKochi posted on 06 Jun 2012 6:19 PM PST
Senior Member
11 Forum Posts
Hi, I would like to know XferData(ref buf, ref len) at Visual C# method. When I transfer from Device to Host, Does "len" need to be the maximum packet size? For example, what kind of method should be used to receive 16 bytes of data from HOST? Although I tested the following contents, I was not successful. --- int Len = 16; byte[] Buf = new byte[Len]; BulkEndpoint.XferData(ref Buf, ref Len); --- Best Regards, Kochi


Re: XferData

dreitz posted on 07 Jun 2012 12:11 PM PST
Top Contributor
74 Forum Posts

I use BulkOutEndPt and BulkInEndPt instead of BulkEndPt.

 

int len = 3;

byte[] buf = new byte[len];

buf[0] = (byte)Commands.VR_SET_INTEGRATION_TIME;

buf[1] = (byte)(integrationTime & 0xff);

buf[2] = (byte)((integrationTime >> 8) & 0xff);

if (myDev.BulkOutEndPt.XferData(ref buf, ref len) == true)

{

     {

                 return Responses.PASSED;

           else

               return Responses.FAILED;

      }

            return Responses.INCOMMANDFAILED;

}

else

return Responses.OUTCOMMANDFAILED;

 

 

 

      else

          if (buf[0] == 0)

     len = 1;

     if (myDev.BulkInEndPt.XferData(ref buf, ref len) == true)



Re: XferData

aasi posted on 09 Jun 2012 11:28 PM PST
Cypress Employee
1073 Forum Posts

BulkEndPoint would point to the first Bulk Endpoint of your device. If it is a OUT endpoint was it configured to send 16 bytes?

If it is a IN endpoint then if it was configured properly then it should have received the data and XferData would have returned success. Please let us know your configuration.

Regards,

Anand






ALL CONTENT AND MATERIALS ON THIS SITE ARE PROVIDED "AS IS". CYPRESS SEMICONDUCTOR AND ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY OF THESE MATERIALS FOR ANY PURPOSE AND DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THESE MATERIALS, INCLUDING BUT NOT LIMITED TO, ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT OF ANY THIRD PARTY INTELLECTUAL PROPERTY RIGHT. NO LICENSE, EITHER EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, IS GRANTED BY CYPRESS SEMICONDUCTOR. USE OF THE INFORMATION ON THIS SITE MAY REQUIRE A LICENSE FROM A THIRD PARTY, OR A LICENSE FROM CYPRESS SEMICONDUCTOR.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms and Conditions of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms and Conditions of this site. Cypress Semiconductor and its suppliers reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.