Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Burst mode data transfer using plx 9030

Status
Not open for further replies.

muss76

Newbie level 4
Joined
May 26, 2010
Messages
6
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,356
Hi all

I am using Mesa electronics io5i20 pci card. In there sample code they have provided borland c code to transfer data from PC to card and then read data back from card to PC. One example section is shown below:

static udword datain32(unsigned p)

{
udword retval ;


p += P_FPGAIOBase ;
asm {
mov dx,[p]
in eax,dx
mov [retval],eax
}
return retval ;

what I ned to know how to send data in burst mode for say 4 cycles. Here in code 32 bit data is being transferred and I want to know how to do it for 128 bit using burst mode.

any help is welcome.

Regards
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top