Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

Code Block
languagecpp
int TX_PACKET_LEN = 51200;//102400;

...


int packetlen = TX_PACKET_LEN;

...


unsigned int packets = 500; //1200;//1200;

...


unsigned long TIMEOUT = 1000;

...


byte * data;

...


byte * data_temp = NULL;

...


unsigned int total_cnt = 0;

...


unsigned int errors = 0;

...


double TheElapsedTime = 0;

...


PI_PipeNumber PipeNo = PI_EP8;

...


data = new byte [TX_PACKET_LEN*packets]; //allocate memory //

...


ResetFX2FifoStatus(USBDeviceList);

...


//starts test

...


SendFPGAcommand(USBDeviceList,FX22MB_REG0_START_RX);

...


bool bResultDataWrite = false;

...


byte PipeNoHex = 0x00;

...


unsigned int XferSizeRead=0;

...


unsigned int DeviceDriverBufferSize = 131072;//409600;//131072;

...


// Find a second bulk OUT endpoint in the EndPoints[] array

...


CCyBulkEndPoint *BulkOutEP = NULL;

...


TE_USB_FX2_SetData_InstanceDriverBuffer (USBDeviceList, &BulkOutEP, PipeNo, TIMEOUT, DeviceDriverBufferSize);

...


ElapsedTime.Start(); //StopWatch start

...


total_cnt = 0;

...


for (unsigned int i = 0; i < packets; i++)

...


{
     long packetlen = RX_PACKET_LEN;

...


     data_temp = &data[total_cnt];

...


     if (TE_USB_FX2_SetData(&BulkOutEP, data_temp, packetlen))

...


     {
         cout << "ERROR" << endl;

...


         break;
     }
     total_cnt += packetlen;

...


}

...



//stops test

...


SendFPGAcommand(USBDeviceList, FX22MB_REG0_STOP);

...


//StopWatch timer

...


TheElapsedTime = ElapsedTime.Stop(false);