1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
//
// Copyright 2025 Ettus Research, a National Instruments Brand
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//
// Module: fft_packetize_pkg
//
// Description:
//
// Package file for fft_packetize and fft_depacketize.
//
package fft_packetize_pkg;
import rfnoc_chdr_utils_pkg::*;
typedef struct packed {
logic [CHDR_TIMESTAMP_W-1:0] timestamp;
logic has_time;
logic [CHDR_LENGTH_W-1:0] length;
} burst_info_t;
typedef struct packed {
logic last;
} symbol_info_t;
localparam int BURST_INFO_W = $bits(burst_info_t);
localparam int SYMBOL_INFO_W = $bits(symbol_info_t);
endpackage : fft_packetize_pkg
|