Wednesday 2 November 2016

rf - Short antenna feedline


So this was talked about in the comments of a previous question, but not in great detail:


I'm using a 2.4GHz ble chip, with a chip antenna. The recommended layout for this chip has a capacitor and an inductor to convert its output to a 50 ohm feed line. This feed line is going to be less than 1cm long before it hits my chip antenna.


Someone previously said that the characteristic impedance of my (pcb trace) feedline doesnt matter if it's that short (considering that the wavelength of 2.4ghz is around 10cm). Does this also apply to the characteristic impedance of the source, and the antenna? Can I get away with no pi matching network at all?


enter image description here NRF52832 datasheet showing conversion to 50 ohm



Answer



Research suggests the latest version of the NRF52832 contains a built in balun for 50 ohm output to make it easier to match to common antennas. If your chip has this matching balun, then the output is already 50 ohms and with a 1cm (less than 1/4 wavelength) PCB feedline the chip antenna should match up. Be sure the chip antenna impedance is 50 ohms. Keep your feedline straight or use 45-degree bends, to avoid introducing additional inductance if it ends up longer. This may affect placement.


However, you still need the L-network you have circled up to act as an RF choke. Details here:



https://devzone.nordicsemi.com/f/nordic-q-a/8147/recommended-chip-antenna-debugger-for-nrf52-based-design/29286#29286


Chip antennas may also require a proper ground plane underneath them on another layer and a “keep out” area around them.


Here’s an excellent source of additional design guidance:


https://www.nxp.com/docs/en/application-note/AN2731.pdf


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...