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.

cc2500 Rf transciver interfacing with Spartan 3 Fpga

Status
Not open for further replies.

afzaalabbasi

Newbie level 3
Joined
Dec 22, 2012
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,309
i want to interface cc2500 wirless module directly with fpga i have included the registers configration files(.h files) exported from Smart RF Studio in verilog now further i am stuck soo please i need your help.....
 

Correct me if I'm wrong, but it seems to me that you've taken a C code driver for the cc2500 module and converted it to Verilog?

Well you need to create a hardware design that interfaces to the transceiver over whatever it's control interface is and then use that design to "talk" to the transceiver with some control logic that uses the .h file you converted to write those values into the transceiver device.

Regards,
-alan
 

I guess the first thing you need to understand is how to write a thread in a forum to explain your problem. Not just stuck and help pls.....

How do you expect people to understand this?
 

i i want to configure registers of (Quasar UK ‘TRX1’ hybrid transceiver) module in verilog to use it as transceiver.i have included the header files in my verilog code.Now the next step is to load all registers values in the module in initial block in verilog. Fpga act as master and transceiver module act as slave..So can you tell how i can load all registers values and address..
 

You can't load all of the registers into an external peripheral in an initial block. Generally, you'll need something like a state machine that programs each register, one by one.
 

i have to load many register values as per required to load the transceiver in transmitter mode or receiver mode how should i go for state machine approach when i have to send the values in the simple way that is just send the register address and then its value then how could i do this with the state machine if no state is changing what will i take state (reference) that will change and i will send the next address and value
i am confused on this...
 

You might want to read up on state machines to see how they're used on FPGAs.

In pseudo code,

State 1: (at power up) - wait some time for the CC2500 and other peripherals to finish powering up. Then go to state 2.
State 2: Send register address 1. Go to state 3.
State 3: Send register value 1. Go to state 4.
State 4: Delay (if necessary). Go to state 5.
State 5: Send register address 2. Go to state 6.
State 6: Send register value 2. Go to state 7.
..
State n. Signal that initialisation is complete. Remain in state n (i.e. do nothing)
 

can anyone have small example of configuration of Any RF Module in verilog???
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top