RF Signal Conditioning & Communication Board

Overview

AVI Power Management
Figure 1: Complete Communication Board

This project involved the development of a communication and RF signal conditioning board intended for wireless monitoring of coated microwave sensors. The board was designed to acquire RF signal strength from a custom microwave sensor, amplify and condition it using programmable analog circuitry, and transmit signal metrics wirelessly to a mobile application via Bluetooth. It integrates multiple functional subsystems including power management, digital potentiometer-based tunable gain stages, an RF power detector (LTC5597), and BLE communication using the ESP32-WROVER module.

Monitoring RF-based chemical sensors requires compact, tunable readout systems that can adapt to varying environmental conditions while remaining low power and wirelessly accessible. Most RF sensor setups are constrained to benchtop test equipment or lack embedded integration.

Our goal was to:

Role

Key Features & Design Decisions

ESP32-WROVER-I – Wireless Communication

I chose the ESP32-WROVER-I for its robust BLE 5.0 support, integrated antenna, and dual-core processing capabilities. Compared to modules like the HC-05 or HM-10, the ESP32 provides significantly more flexibility, including OTA updates, Wi-Fi fallback, and low-power modes. Its SPI bus was essential for driving the MCP4141 digital potentiometer. Additionally, it allowed seamless integration with a mobile app dashboard under development.

Why not ESP8266? Lacked BLE and sufficient GPIOs.

Why not external BLE SoC? Increased complexity and required inter-IC protocol development.

MCP4141 Digital Potentiometer

This chip gave us software-controlled analog tuning, allowing real-time gain adjustment without physical intervention. It supported SPI control with 256-step resolution and operated comfortably at 3.3V, compatible with the ESP32.

Placed close to amplifier output and VCO input for tight gain loop.

SPI routing was kept short and isolated from analog signal paths to prevent switching noise injection.

LM324 Quad Op-Amp

The LM324 was chosen for its availability, single-rail operation, and stable bandwidth for low-frequency analog buffering. While not ideal for high-speed RF work, it was used to buffer control voltages, create gain stages for DC signals, and drive the VCO input.

Used in non-inverting amplifier and voltage follower configurations.

Carefully decoupled and placed away from high-frequency digital lines.

LTC5597 Power Detector

Selected due to its broadband RF input range (up to 40GHz) and ease of conversion to DC output. This part was critical for measuring the RF strength from the sensor. Its layout followed Analog Devices’ guidance: short RF traces, a clean analog ground plane, and precise decoupling.

Positioned close to SMA input to minimize loss

Output filtered and buffered before feeding into the ESP32's ADC

Power Regulation

Used linear regulators to avoid switching noise. Provided isolated 3.3V and 5V domains for clean digital and analog supply. Routed with wide copper traces.

Why discrete regulators?

PCB Layout Strategy

Note the second iteration also introduced a frame-based layout structure to ease PCB manufacturing and panelization with fiducial markers, text clearance zones, and consistent mounting hole spacing.

AVI Power Management
Figure 2: Top Layer layout
AVI Power Management
Figure 3: Layout with Polygon Pours. Top layer (red) is Power and Bottom (blue) is GND.

Challenges & Constraints

Future Work & Improvements