From ae98a0fab629a2efeb4e9bf609eb54b8ff653388 Mon Sep 17 00:00:00 2001 From: morgan Date: Fri, 7 Feb 2025 11:56:56 +0800 Subject: [PATCH] frameline: update docs --- src/gateware/cxp_frame_pipeline.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gateware/cxp_frame_pipeline.py b/src/gateware/cxp_frame_pipeline.py index f145277..0e42bc3 100644 --- a/src/gateware/cxp_frame_pipeline.py +++ b/src/gateware/cxp_frame_pipeline.py @@ -21,7 +21,8 @@ pixel4x_layout = [ ("data", pixel_width*4), ("valid", 4), ] -pixeldata_layout = [("data", word_width)] # pixel data don't need k code +# the pixel data don't include any K code nor duplicate char +pixeldata_layout = [("data", word_width)] class End_of_line_Marker(Module): """ @@ -906,7 +907,7 @@ class Pixel_Pipeline(Module): # self.source = self.pipeline[-1].source # self.comb += self.source.ack.eq(1) # simulated a proper consumer, idk why but without this it will destory timing -class Stream2Pixel4x_Converter(Module): +class Stream2Pixel4x(Module): """ Convert the raw frame data into pixel data