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.

Gaussian filter design to meet bluetooth spec?

Status
Not open for further replies.

wwfhm2002

Member level 5
Joined
Dec 7, 2003
Messages
83
Helped
6
Reputation
12
Reaction score
5
Trophy points
1,288
Activity points
686
site:www.edaboard.com spec of bluetooth

Bluetooth defines the GFSK with BT=0.5, so I design a Gauss filter with:
Matlab: h = gaussfir(0.5, 1, 8)

And Bluetooth also defines that deviation of pattern 0101 must be not less than 80% of deviation of 00001111, so I simulate it with:
Matlab: sym0 = [0 1 0 1]; sym1 = [ 0 0 0 0 1 1 1 1];
Matlab: gout0 = filter(h,1,rectpulse(sym0,4));
Matlab: gout1 = filter(h,1,rectpulse(sym1,4));

But I found max(gout0) is only about 67% while max(gout1) is 1. So I think the deviation of sym0 will be only 67% of sym1, which does not meet bluetooth spec, Can anyone explain this issue?
 

gaussian filter bluetooth

Hello,

I'm looking for a matlab simulation for the GFSK mod/demod. Please if you have done something like that please send it to me.

Thanks
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top