1 /** @mainpage OpenOCD Reference Manual
3 Welcome to the OpenOCD Reference Manual -- the developer's resource for
4 learning about the internal architecture of the OpenOCD project. @par
6 In addition, this document contains the tactical and strategic plans
7 and processes that have been developed by and for the OpenOCD community.
9 Developers that want to contribute to OpenOCD should read the following
10 sections before starting work:
12 - The List of @subpage thelist enumerates opportunities for improving or
13 extending the OpenOCD platform. If your ideas are on The List, you might
14 check the mailing list archives to find the status of your feature (or bug).
15 - The @subpage styleguide provides rules that developers should
16 follow when writing new code for OpenOCD.
17 - The @subpage patchguide provides policies that developers should
18 follow when submitting patches to the project.
19 - The @subpage bugs page contains the content of the BUGS file, which
20 provides instructions for submitting bug reports to the maintainers.
21 - The @subpage releases page describes the project's release process.
23 @ref primer provide introductory materials for new developers on various
26 Finally, the @ref oocd pages explain how the code has been organized
27 into layers of APIs, providing an overview of how they fit together.
28 These pages attempt to give developers a high-level perspective of the
29 various code modules provided by OpenOCD.
33 /** @page primer OpenOCD Technical Primers
35 This pages lists Technical Primers available for OpenOCD Developers.
36 They seek to provide information to pull novices up the learning curves
37 associated with the fundamental technologies used by OpenOCD.
39 - @subpage primerpatches
41 - @subpage primerautotools
45 These documents should bridge any "ancillary" gaps in contributor
46 knowledge, without having to learn the complete languages or technology.
47 They should provide enough information for experienced developers to
48 learn how to make "correct" changes when creating patches.
50 In all cases, these Primers should use idiomatic conventions that the
51 community has agreed are the "right way of doing things". In this
52 respect, these documents typically assume some familiarity with the
53 information contained in one or more @ref styleguide, or they will
54 directly refer to specific style guides as supplemental reading.
56 Contributions or suggestions for new Technical Primers are welcome.
60 /** @page oocd OpenOCD Architecture
62 The OpenOCD library consists of several APIs that build together to
63 provide the support functionality. The following list shows how these
64 modules are stacked in the current implementation (from bottom to top):
93 Obviously, there are some nuances to the stack that are not shown by
94 this linear list of layers.
96 The List of @ref thelist enumerates opportunities for improving or
97 extending the OpenOCD platform.