mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-05 13:28:16 +00:00
doc: Start a writing a driver document page
This commit is contained in:
parent
a228c3efff
commit
265425a9bc
|
@ -4,6 +4,10 @@ This documentation is intended for developers wanting to dive into the code of
|
|||
Monado. And assumes that you have read [README.md][], the file also holdss
|
||||
getting started information and general documentation.
|
||||
|
||||
|
||||
## Useful pages
|
||||
* @ref md_writing-a-new-driver (**not complete**)
|
||||
|
||||
## Source layout
|
||||
|
||||
* src/xrt/include - @ref xrt_iface defines the internal interfaces of Monado.
|
||||
|
|
13
doc/writing-a-new-driver.md
Normal file
13
doc/writing-a-new-driver.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Writing a new driver
|
||||
|
||||
This document will tell you in broad strokes what you need to do to create a
|
||||
driver in Monado. Like the many ones already in there @ref drv. It is not a step
|
||||
by step guide to making a driver. Also what you need to do can vary a lot
|
||||
depending on the type of hardware you are adding a driver for and the level of
|
||||
features you want.
|
||||
|
||||
## Map
|
||||
|
||||
The first components you will be interacting with is @ref st_prober find the
|
||||
hardware devices and setup a working system, along with the @ref aux code that
|
||||
provides various helpers. You can look at other @ref drv on how to start.
|
Loading…
Reference in a new issue