# ๐Ÿ“ก PL Tx Subsystem (Pulse Generator) [๐Ÿ  Project Home](../README.md) --- ## Overview The Tx subsystem implements a **pulse-based Linear Frequency Modulated (LFM) chirp generator** using a DDS/NCO architecture in the FPGA (PL). The generator produces **complex baseband output**: x[n] = exp(jยทฯ†[n]) and operates deterministically in the PL after a trigger from the PS. --- ## Architecture TxPulseStart (PS) โ†“ pulse_gen_ctrl (FSM) โ†“ tx_active โ†“ Phase Increment Counter โ†“ NCO (DDS) โ†“ Complex Output (I/Q) --- ## Chirp Generation Principle The chirp is generated using a second-order phase accumulator: ฮ”ฯ†[n] = ฮ”ฯ†[nโˆ’1] + step ฯ†[n] = ฯ†[nโˆ’1] + ฮ”ฯ†[n] This results in a linear frequency sweep. --- ## Parameterization (PS โ†’ PL) Inputs: - Center frequency: Fc - Bandwidth: B - Pulse width: N (samples) Derived internally: f_start = Fc โˆ’ B/2 step = B / (N โˆ’ 1) These values are converted to DDS phase increments before being written to PL registers. --- ## Pulse Timing (FSM) States: - IDLE: waits for trigger and latches parameters - ACTIVE: generates pulses - DONE: waits for trigger reset --- ## Timing Behavior Within each PRI: |<------ PRI ------>| |<-- pulse -->| idle | - tx_active = 1 โ†’ chirp output - tx_active = 0 โ†’ output zero Chirp is reset at each pulse start. --- ## Burst Trigger (PS Interaction) - Controlled via TxPulseStart (memory-mapped register) - Rising edge triggers burst - PL runs autonomously afterward --- ## Key Characteristics - Deterministic timing (128 MHz) - Efficient DDS (adder-based) - Complex output (I/Q) - Supports burst-mode radar operation --- ## ๐Ÿ”— Related Components - [๐Ÿ  Project Home](../README.md) - [PL Rx Subsystem](pl_rx_subsystem.md) - [PS Subsystem](ps_subsystem.md)