-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
201 lines (171 loc) · 7.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
<link rel="icon" type="image/png" href="/assets/images/favicon.png" />
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/styles/main.css">
<title>About — pyOCD</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2RKCB4KZ7S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2RKCB4KZ7S');
</script>
</head>
<body id="top">
<div class="full-view-height d-flex flex-column">
<div class="flex-shrink-0">
<nav class="navbar navbar-expand-md navbar-dark py-1">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<img src="/assets/pyocd_logo_white.svg" height="42" width="auto" alt=""></img>
</a>
<a class="navbar-brand color-secondary" href="/">
<span class="display-lg project-name">pyOCD</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarCollapse">
<ul class="navbar-nav">
<li class="nav-item mr-auto mx-1">
<a class="nav-link" href="/docs/">Documentation</a>
</li>
<li class="nav-item mr-auto mx-1">
<a class="nav-link" href="/posts/">Posts</a>
</li>
<li class="nav-item mr-auto mx-1">
<a class="nav-link" href="https://github.com/pyocd/pyOCD"><i class="bi bi-github"></i></a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container flex-grow-1">
<div class="row">
<main role="main" class="content-scroll p-3 p-md-4">
<p>pyOCD is an open source Python package for programming and debugging Arm Cortex-M microcontrollers
using multiple supported types of USB debug probes. It is fully cross-platform, with support for
Linux, macOS, and Windows.</p>
<p>A command line tool is provided that covers most use cases, or you can make use of the Python
API to enable low-level target control. A common use for the Python API is to run and control CI
tests.</p>
<p>Upwards of 70 popular MCUs are supported built-in. In addition, through the use of CMSIS-Packs,
nearly every Cortex-M device on the market is supported.</p>
<p>The <code class="highlighter-rouge">pyocd</code> command line tool gives you total control over your device with these subcommands:</p>
<ul>
<li><code class="highlighter-rouge">gdbserver</code>: GDB remote server allows you to debug using gdb via either
<a href="https://gnu-mcu-eclipse.github.io/">GNU MCU Eclipse plug-in</a> or the console.</li>
<li><code class="highlighter-rouge">flash</code>: Program files of various formats into flash memory.</li>
<li><code class="highlighter-rouge">erase</code>: Erase part or all of an MCU’s flash memory.</li>
<li><code class="highlighter-rouge">pack</code>: Manage <a href="http://arm-software.github.io/CMSIS_5/Pack/html/index.html">CMSIS Device Family Packs</a>
that provide additional target device support.</li>
<li><code class="highlighter-rouge">commander</code>: Interactive REPL control and inspection of the MCU.</li>
<li><code class="highlighter-rouge">list</code>: Show connected devices.</li>
</ul>
<p>The API and tools provide these features:</p>
<ul>
<li>halt, step, resume control</li>
<li>read/write memory</li>
<li>read/write core registers</li>
<li>set/remove hardware and software breakpoints</li>
<li>set/remove watchpoints</li>
<li>write to flash memory</li>
<li>load binary, hex, or ELF files into flash</li>
<li>reset control</li>
<li>access CoreSight DP and APs</li>
<li>SWO and SWV</li>
<li>and more!</li>
</ul>
<p>Configuration and customization is supported through <a href="docs/configuration.md">config files</a> and
<a href="docs/user_scripts.md">user scripts</a>.</p>
</main>
</div>
</div>
<div class="flex-shrink-0">
<footer class="pyocd-footer p-0 mt-3">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-4 pt-4">
<div class="col-3">
<p class="small">
Copyright © 2021-2023 PyOCD Authors.
</p>
<p class="small">
Site and docs are <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.<br/>
Project code is <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a>.
</p>
</div>
<div class="col-3"> <!-- mt-3 mb-3 mx-4 -->
<h5>Links</h5>
<ul class="list-unstyled">
<li>
<a href="/docs/">Documentation</a>
</li>
<li>
<a href="/posts/">Posts</a>
</li>
<li>
<a href="https://github.com/pyocd/pyOCD/blob/main/CONTRIBUTING.md">Contributing</a>
</li>
<li>
<a href="https://github.com/pyocd/.github/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a>
</li>
<li>
<a href="https://github.com/pyocd/">GitHub</a>
</li>
</ul>
</div>
<div class="col-3">
<h5>Projects</h5>
<ul class="list-unstyled">
<li>
<a href="https://github.com/pyocd/pyOCD">pyOCD</a>
</li>
<li>
<a href="https://github.com/pyocd/cmsis-pack-manager">cmsis-pack-manager</a>
</li>
<li>
<a href="https://github.com/pyocd/FlashAlgo">FlashAlgo</a>
</li>
</ul>
</div>
<div class="col-3">
<h5>Community</h5>
<ul class="list-unstyled">
<li>
<a href="https://github.com/pyocd/pyOCD/issues">Issues</a>
</li>
<li>
<a href="https://github.com/pyocd/pyOCD/discussions">Discussions</a>
</li>
<li>
<a href="https://join.slack.com/t/pyocd/shared_invite/zt-zqjv6zr5-ZfGAXl_mFCGGmFlB_8riHA">Slack</a>
</li>
<li>
<a href="https://groups.google.com/g/pyocd">Mailing list</a>
</li>
</ul>
</div>
</div>
</footer>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
<script src="/assets/javascript/jquery-3.6.0.slim.min.js"></script>
<!--
<script type="text/javascript" src="/assets/javascript/index.js"></script>
-->
</body>
</html>