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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>yotta Documentation{% if page.title %} - {{page.title}}{% endif %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="file:///usr/share/javascript/bootstrap5/css/bootstrap.css" rel="stylesheet">
<link href={{ "assets/css/docs.css" | absolute_url }} rel="stylesheet">
<link rel="shortcut icon" href={{ "assets/img/yt.png" | absolute_url }}>
<style>
</style>
</head>
<body>
<splash class='minimised'></splash>
<div class="container">
<div class="row">
<div class="col-sm-3">
<ul id="menu" class="nav nav-list">
<li class="nav-header">Using yotta</li>
<li data-section="yotta/introduction"><a href={{ "index.html#introduction" | absolute_url }}>Getting Started</a></li>
<li data-section="yotta/installing"><a href={{ "index.html#installing" | absolute_url }}>Installing</a></li>
<li data-section="yotta/cheatsheet"><a href={{ "reference/cheatsheet.html" | absolute_url }}>Cheatsheet</a></li>
<li class="nav-header">Tutorials</li>
<li data-section="tutorial/building"><a href={{ "tutorial/building.html" | absolute_url }}>Building Modules</a></li>
<li data-section="tutorial/module"><a href={{ "tutorial/tutorial.html" | absolute_url }}>Creating a Module</a></li>
<li data-section="tutorial/executable"><a href={{ "tutorial/tutorial.html#Creating%20an%20Executable" | absolute_url }}>Creating an Executable</a></li>
<li data-section="tutorial/privaterepos"><a href={{ "tutorial/privaterepos.html" | absolute_url }}>Private Repositories</a></li>
<li data-section="tutorial/targets"><a href={{ "tutorial/targets.html" | absolute_url }}>Using Targets</a></li>
<li data-section="tutorial/testing"><a href={{ "tutorial/testing.html" | absolute_url }}>Testing with yotta</a></li>
<li data-section="tutorial/yotta_link"><a href={{ "tutorial/yotta_link.html" | absolute_url }}>Fixing a Bug in a Dependency</a></li>
<li class="nav-header">Best Practices</li>
<li data-section="tutorial/reuse"><a href={{ "tutorial/reuse.html" | absolute_url }}>Writing Re-usable Software</a></li>
<li data-section="tutorial/releasing"><a href={{ "tutorial/release.html" | absolute_url }}>Releasing Software with yotta</a></li>
<li data-section="tutorial/circulardeps"><a href={{ "tutorial/circulardeps.html" | absolute_url }}>Handling Circular Dependencies</a></li>
<li class="nav-header">Reference</li>
<li data-section="reference/commands"><a href={{ "reference/commands.html" | absolute_url }}>Command Reference</a></li>
<li data-section="reference/module"><a href={{ "reference/module.html" | absolute_url }}>module.json</a></li>
<li data-section="reference/target"><a href={{ "reference/target.html" | absolute_url }}>target.json</a></li>
<li data-section="reference/ignore"><a href={{ "reference/ignore.html" | absolute_url }}>.yotta_ignore</a></li>
<li data-section="reference/config"><a href={{ "reference/config.html" | absolute_url }}>Config System</a></li>
<li data-section="reference/buildsystem"><a href={{ "reference/buildsystem.html" | absolute_url }}>Build System</a></li>
<li data-section="reference/registry"><a href={{ "reference/registry.html" | absolute_url }}>yotta Public Registry</a></li>
<li data-section="reference/licenses"><a href={{ "reference/licenses.html" | absolute_url }}>yotta Module Licenses</a></li>
</ul>
</div>
<div class="col-sm-9 docs-content">
{{content}}
</div>
</div>
</div>
<footer><div class="container">
<div class="row">
<div class="footer">
<div class="mbed-logo">
<a class="mbedLink" href="http://www.mbed.com" title="back to mbed home">Back to mbed home</a>
</div>
<div class="copyright-bar">
<div class="copyright">© ARM Ltd. Copyright 2015 – ARM mbed IoT Device Platform</div>
<div class="footer-links">
<a class="mbedLink" href="http://www.mbed.com"> Home page </a> |
<a class="mbedLink" href="http://www.mbed.com/about-mbed/terms-use"> Terms of use </a> |
<a class="mbedLink" href="http://www.mbed.com/about-mbed/privacy"> Privacy policy </a> |
<a class="mbedLink" href="http://www.mbed.com/about-mbed/cookie-policy"> Cookies </a>
</div>
</div>
</div>
</div>
</div>
</footer>
<style>
</style>
<script src="file:///usr/share/javascript/jquery/jquery.min.js"></script>
<script src="file:///usr/share/javascript/bootstrap5/js/bootstrap.min.js"></script>
<script>
$('#menu [data-section="{{page.section}}"]').addClass('active');
</script>
</body>
</html>
|