From 3d33e5a49a5a3857c39fe8aa79af60902a70088e Mon Sep 17 00:00:00 2001 From: Lee Lup Yuen Date: Fri, 9 Dec 2022 19:58:37 +0800 Subject: [PATCH] Clean up --- backlight.zig | 2 +- display.zig | 4 ++-- dphy.zig | 2 +- panel.zig | 2 +- pmic.zig | 2 +- render.zig | 4 ++-- tcon.zig | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/backlight.zig b/backlight.zig index 64a3819..c81b6cb 100644 --- a/backlight.zig +++ b/backlight.zig @@ -19,7 +19,7 @@ //! PinePhone Display Backlight Driver for Apache NuttX RTOS //! See https://lupyuen.github.io/articles/de#appendix-display-backlight -//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf +//! "A64 Page ???" refers to Allwinner A64 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/Allwinner_A64_User_Manual_V1.1.pdf /// Import the Zig Standard Library const std = @import("std"); diff --git a/display.zig b/display.zig index abd634b..30b05d0 100644 --- a/display.zig +++ b/display.zig @@ -18,8 +18,8 @@ //*************************************************************************** //! PinePhone MIPI DSI Driver for Apache NuttX RTOS. -//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf -//! "A31 Page ???" refers to Allwinner A31 User Manual: https://github.com/allwinner-zh/documents/raw/master/A31/A31_User_Manual_v1.3_20150510.pdf +//! "A64 Page ???" refers to Allwinner A64 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/Allwinner_A64_User_Manual_V1.1.pdf +//! "A31 Page ???" refers to Allwinner A31 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/A31_User_Manual_v1.3_20150510.pdf //! This MIPI DSI Interface is compatible with Zephyr MIPI DSI: //! https://github.com/zephyrproject-rtos/zephyr/blob/main/include/zephyr/drivers/mipi_dsi.h diff --git a/dphy.zig b/dphy.zig index f31726c..c5c4145 100644 --- a/dphy.zig +++ b/dphy.zig @@ -19,7 +19,7 @@ //! PinePhone Allwinner A64 MIPI DPHY (Display Physical Layer) Driver for Apache NuttX RTOS //! See https://lupyuen.github.io/articles/dsi#appendix-enable-mipi-display-physical-layer-dphy -//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf +//! "A64 Page ???" refers to Allwinner A64 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/Allwinner_A64_User_Manual_V1.1.pdf /// Import the Zig Standard Library const std = @import("std"); diff --git a/panel.zig b/panel.zig index f796166..1249273 100644 --- a/panel.zig +++ b/panel.zig @@ -19,7 +19,7 @@ //! PinePhone LCD Panel Driver for Apache NuttX RTOS //! See https://lupyuen.github.io/articles/de#appendix-reset-lcd-panel -//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf +//! "A64 Page ???" refers to Allwinner A64 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/Allwinner_A64_User_Manual_V1.1.pdf /// Import the Zig Standard Library const std = @import("std"); diff --git a/pmic.zig b/pmic.zig index f242d24..99cf2a4 100644 --- a/pmic.zig +++ b/pmic.zig @@ -19,7 +19,7 @@ //! PinePhone Power Management IC Driver for Apache NuttX RTOS //! See https://lupyuen.github.io/articles/de#appendix-power-management-integrated-circuit -//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf +//! "A64 Page ???" refers to Allwinner A64 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/Allwinner_A64_User_Manual_V1.1.pdf /// Import the Zig Standard Library const std = @import("std"); diff --git a/render.zig b/render.zig index c3ef829..2e9dccf 100644 --- a/render.zig +++ b/render.zig @@ -20,8 +20,8 @@ //! PinePhone Display Engine Driver for Apache NuttX RTOS, based on NuttX Framebuffers: //! https://github.com/apache/incubator-nuttx/blob/master/include/nuttx/video/fb.h //! "DE Page ???" refers to Allwinner Display Engine 2.0 Specification: https://linux-sunxi.org/images/7/7b/Allwinner_DE2.0_Spec_V1.0.pdf -//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf -//! "A31 Page ???" refers to Allwinner A31 User Manual: https://github.com/allwinner-zh/documents/raw/master/A31/A31_User_Manual_v1.3_20150510.pdf +//! "A64 Page ???" refers to Allwinner A64 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/Allwinner_A64_User_Manual_V1.1.pdf +//! "A31 Page ???" refers to Allwinner A31 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/A31_User_Manual_v1.3_20150510.pdf /// Import the Zig Standard Library const std = @import("std"); diff --git a/tcon.zig b/tcon.zig index ddfa0d2..ef5910e 100644 --- a/tcon.zig +++ b/tcon.zig @@ -19,7 +19,7 @@ //! PinePhone Allwinner A64 Timing Controller (TCON0) Driver for Apache NuttX RTOS //! See https://lupyuen.github.io/articles/de#appendix-timing-controller-tcon0 -//! "A64 Page ???" refers to Allwinner A64 User Manual: https://linux-sunxi.org/images/b/b4/Allwinner_A64_User_Manual_V1.1.pdf +//! "A64 Page ???" refers to Allwinner A64 User Manual: https://github.com/lupyuen/pinephone-nuttx/releases/download/doc/Allwinner_A64_User_Manual_V1.1.pdf /// Import the Zig Standard Library const std = @import("std");