mirror of
https://github.com/lupyuen/pinephone-nuttx.git
synced 2025-01-12 12:48:33 +08:00
Clean up
This commit is contained in:
parent
cdb6bbc8e5
commit
3d33e5a49a
7 changed files with 9 additions and 9 deletions
|
@ -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");
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
2
dphy.zig
2
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");
|
||||
|
|
|
@ -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");
|
||||
|
|
2
pmic.zig
2
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");
|
||||
|
|
|
@ -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");
|
||||
|
|
2
tcon.zig
2
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");
|
||||
|
|
Loading…
Reference in a new issue