Skip to content

Commit

Permalink
Merge pull request #57 from 916BGAI/main
Browse files Browse the repository at this point in the history
fix lct024bsi20 mipi porch
  • Loading branch information
Neutree authored Oct 18, 2024
2 parents e011830 + fab2c7e commit 1dd70fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion middleware/v2/sample/scene_auto/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ LIBS += -lnanomsg
endif

EXTRA_CFLAGS = $(INCS) $(DEFS)
EXTRA_LDFLAGS = $(LIBS) -lpthread -lm -lini
EXTRA_LDFLAGS = $(LIBS) -lpthread -lm -lini -latomic

.PHONY : clean all
all: $(TARGET)
Expand Down
8 changes: 4 additions & 4 deletions u-boot-2021.10/include/cvitek/cvi_panels/dsi_d240si31.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

#define D240SI31_VACT 640
#define D240SI31_VSA 10
#define D240SI31_VBP 12
#define D240SI31_VFP 3
#define D240SI31_VBP 30
#define D240SI31_VFP 30

#define D240SI31_HACT 480
#define D240SI31_HSA 48
#define D240SI31_HBP 64
#define D240SI31_HFP 16
#define D240SI31_HBP 30
#define D240SI31_HFP 30

#define DXQ_PIXEL_CLK(x) ((x##_VACT + x##_VSA + x##_VBP + x##_VFP) \
* (x##_HACT + x##_HSA + x##_HBP + x##_HFP) * 60 / 1000)
Expand Down

0 comments on commit 1dd70fb

Please sign in to comment.