Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit c9e26162 authored by Seth Nowlin's avatar Seth Nowlin :soccer:
Browse files

Merge branch docs.beagleboard.io:main into main

parents c1667cde a8fe8fcb
Branches
Tags
1 merge request!99Erasing the older Branch and Starting Anew...
Showing
with 315 additions and 177 deletions
image: beagle/sphinx-build-env:latest
image: registry.git.beagleboard.org/docs/sphinx-build-env:latest
variables:
GIT_SUBMODULE_STRATEGY: recursive
cache:
key: sphinx-build-env-docs-001
key: sphinx-build-env-docs-003
paths:
- .venv
- .cache
......@@ -45,7 +45,7 @@ docs:
- "build: [html]"
- "build: [pdf]"
tags:
- docs
- docker-amd64
script:
- ./gitlab-build.sh publish
artifacts:
......
[submodule "books/beaglebone-cookbook/code"]
path = books/beaglebone-cookbook/code
url = https://git.beagleboard.org/beagleboard/beaglebone-cookbook-code.git
url = https://openbeagle.org/beagleboard/beaglebone-cookbook-code.git
[submodule "books/pru-cookbook/code"]
path = books/pru-cookbook/code
url = https://git.beagleboard.org/beagleboard/pru-cookbook-code
url = https://openbeagle.org/beagleboard/pru-cookbook-code
[submodule "projects/librobotcontrol"]
path = projects/librobotcontrol
url = https://git.beagleboard.org/beagleboard/librobotcontrol
url = https://openbeagle.org/beagleboard/librobotcontrol
......@@ -20,7 +20,7 @@ This project and everyone participating in it is governed by the [BeagleBoard.or
If you are new to Sphinx, RST, or git then you can checkout out our [Style and usage guidelines](https://docs.beagleboard.org/latest/intro/contribution/index.html#style-and-usage-guidelines).
See more at https://docs.beagleboard.org/en/latest/intro/contribution/.
See more at https://docs.beagleboard.org/latest/intro/contribution/.
### Forking the Project
......
......@@ -62,7 +62,7 @@
/* Force table content font-size in responsive tables to be 100%
* fixing larger font size for paragraphs in the kconfig tables */
.wy-table-responsive td p {
.wy-table-responsive td p {
font-size: 100%;
}
......
......@@ -9,6 +9,8 @@
\usepackage{longtable}
\usepackage{fontspec}
\usepackage{comment}
\usepackage[maxfloats=256]{morefloats}
\maxdeadcycles=1000
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
\setmainfont{DejaVuSans}
\setmonofont{FreeMono}
......
<a href="https://creativecommons.org/licenses/by-sa/4.0/" style="text-decoration:none">
<img src="https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg"/>
<p>This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.</p>
</a>
<a role="button" data-bs-toggle="modal" data-bs-target="#feedbackModal" href="#" onclick="getFeedbackButtonhref(this)">
<i class="fa-solid fa-arrows-rotate"></i> Provide Feedback
</a>
<div class="modal fade" id="feedbackModal" aria-labelledby="feedbackModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title m-0 text-dark" id="feedbackModalLabel">Feedback</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body text-center">
<div class="btn-group mb-3" role="group" aria-label="Basic radio toggle button group" id="feedbackType" onChange="feedbackHandler()">
<input type="radio" class="btn-check" name="feedbackType" id="btnradio1" autocomplete="off" value="Issue">
<label class="btn btn-outline-dark shadow-none" for="btnradio1"><i class="fa-solid fa-triangle-exclamation"></i> Issue</label>
<input type="radio" class="btn-check" name="feedbackType" id="btnradio2" autocomplete="off" value="Feedback" checked>
<label class="btn btn-outline-dark shadow-none" for="btnradio2"><i class="fa-solid fa-arrows-rotate"></i> Feedback</label>
<input type="radio" class="btn-check" name="feedbackType" id="btnradio3" autocomplete="off" value="Idea">
<label class="btn btn-outline-dark shadow-none" for="btnradio3"><i class="fa-solid fa-lightbulb"></i> Idea</label>
</div>
<div class="mb-3">
<input type="title" class="form-control bg-light text-dark" id="feedbackModalTitle" placeholder="Title" onChange="feedbackHandler()">
</div>
<div class="mb-3">
<textarea class="form-control bg-light text-dark" id="feedbackModalDescription" minlength="13" rows="3" placeholder="Description" onChange="feedbackHandler()"></textarea>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" onclick="feedbackClear()">Clear & Close</button>
<span id="generateLinkButtonTooltip" data-bs-placement="bottom" data-bs-toggle="tooltip">
<a href="javascript:void(0);" id="feedbacklink" type="button" class="btn btn-primary disabled text-light">
<i class="fa-solid fa-up-right-from-square"></i> Generate OpenBeagle Issue
</a>
</span>
</div>
</div>
</div>
</div>
<script>
var titleMinLength = 4
var descriptionMinLength = 12
document.body.appendChild(document.getElementById('feedbackModal'));
var generateLinkButtonTooltip = document.getElementById("generateLinkButtonTooltip")
var link = document.getElementById("feedbacklink")
var gitlab_project = "{{gitlab_project}}"
var title = document.getElementById("feedbackModalTitle")
var description = document.getElementById("feedbackModalDescription")
var generatedFromLink = ""
title.placeholder = "Title (minimum "+titleMinLength+" characters)"
description.placeholder = "Description (minimum "+descriptionMinLength+" characters)"
function feedbackHandler() {
var type = document.querySelector('input[name="feedbackType"]:checked').value
if (!gitlab_project.match(/^[a-zA-Z]+:\/\//)) {
gitlab_project = 'https://' + gitlab_project;
}
if(title.value.length >= titleMinLength && description.value.length >= descriptionMinLength) {
link.target="_blank"
link.classList.remove("disabled");
generateLinkButtonTooltip.title = "You must be logged in to OpenBeagle.org to generate an Issue!"
link.href = gitlab_project + "/-/issues/new?issue[title]=" + type + ": " + title.value + "&issue[description]=" + description.value + "%0A%0AGenerated from: " + generatedFromLink.replace('#', '%23')
} else {
link.classList.add("disabled");
generateLinkButtonTooltip.title = "Add proper title and description to activate the link!"
}
}
function feedbackClear() {
title.value = ""
description.value = ""
link.href = ""
link.classList.add("disabled");
}
var headerlinks = document.getElementsByClassName("headerlink")
for(let i=0; i<headerlinks.length; i++){
headerlinks[i].innerHTML = '<i class="fa-solid fa-arrows-rotate"></i>'
headerlinks[i].title = "Provide Feedback"
headerlinks[i].setAttribute("data-bs-toggle","modal")
headerlinks[i].setAttribute("data-bs-target","#feedbackModal")
headerlinks[i].setAttribute("onclick","getFeedbackButtonhref(this)")
}
function getFeedbackButtonhref(clickedFeedbackLink) {
generatedFromLink = clickedFeedbackLink.href
feedbackHandler()
}
</script>
\ No newline at end of file
<a role="button" href="https://forum.beagleboard.org" target="_blank">
<i class="fa-brands fa-discourse"></i> Discuss on Forum
</a>
{% for board, path, page, git, forum in board_details %}
{% if path+'/' in pagename %}
<a role="button" data-bs-toggle="modal" data-bs-target="#licenseTerms" href="#">
<i class="fa-regular fa-rectangle-list"></i> License Terms
</a>
<div class="modal fade" id="licenseTerms" aria-labelledby="licenseTermsLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title m-0 text-dark" id="licenseTermsLabel">{{board}} - License Terms</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<ul class="list-group list-group-flush">
<li class="list-group-item">This work is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a></li>
<li class="list-group-item">Design materials and license can be found in the <a href="{{git}}">{{board}} git repository</a></li>
<li class="list-group-item">Use of the boards or design materials constitutes an agreement to the <a href="{{docs_url}}/boards/terms-and-conditions.html">Terms & Conditions</a></li>
<li class="list-group-item">Software images and purchase links available on the <a href="{{page}}">{{board}} board page</a></li>
<li class="list-group-item">For export, emissions and other compliance, see <a href="{{docs_url}}/{{path}}/06-support.html">Support Information</a></li>
<li class="list-group-item">All support for this design is through BeagleBoard.org community at <a href="{{forum}}">BeagleBoard.org forum.</a></li>
</ul>
</div>
</div>
</div>
</div>
<script>
document.body.appendChild(document.getElementById('licenseTerms'));
</script>
{% endif %}
{% endfor %}
\ No newline at end of file
<div class="card bg-light mt-4 text-center">
<div class="card-body">
<p class="card-text text-dark">
<a href="https://www.beagleboard.org/" target="_blank">BeagleBoard.org</a>
is all about being open, please discuss in public on our
<a href="https://forum.beagleboard.org" target="_blank">forum</a>!</p>
</div>
</div>
\ No newline at end of file
<div class="card bg-light mt-4 text-center">
<div class="card-header bg-primary text-light fw-bold">
Why are we doing this?
</div>
<div class="card-body">
<p class="card-text text-dark">
We believe in making computers open again to democratize technology and empower individuals and organizations to explore, experiment, and create without the constraints of proprietary systems.
</p>
</div>
</div>
<div class="card bg-light mt-4 text-center">
<div class="card-header bg-warning text-dark fw-bold">
What are we doing?
</div>
<div class="card-body">
<p class="card-text text-dark">
We design versatile and affordable single-board computers to provide developers, hobbyists, and educators with a platform for prototyping, experimentation, and production of embedded systems. Our comprehensive documentation, tutorials, and vibrant online community support users in their projects and foster knowledge sharing.
</p>
</div>
</div>
<div class="card bg-light mt-4 text-center">
<div class="card-header bg-success text-light fw-bold">
How are we doing it?
</div>
<div class="card-body">
<p class="card-text text-dark">
Through open-source hardware designs, diverse software support, and active community engagement, we enable users to customize, innovate, and collaborate effortlessly in embedded computing.
</p>
</div>
</div>
<div class="card bg-light mt-4 text-center">
<div class="card-header bg-dark text-light fw-bold">
Support us <i class="fa-solid fa-hand-holding-dollar"></i>
</div>
<div class="card-body">
<p class="card-text text-dark">
The BeagleBoard.org Foundation is a Michigan, USA-based 501(c)(3) non-profit corporation existing to provide education in and collaboration around the design and use of open-source software and hardware in embedded computing.
</p>
</div>
<div class="card-footer d-grid gap-2">
<!-- <a href="https://paypal.me/beagleboard" class="btn btn-primary text-light"><i class="fa-brands fa-paypal"></i> Support via Paypal</a> -->
<a href="https://patreon.com/beagleboard" class="btn btn-danger text-light"><i class="fa-brands fa-patreon"></i> Become a Patreon</a>
<a href="https://github.com/sponsors/beagleboard" class="btn btn-dark text-light"><i class="fa-brands fa-github"></i> Sponsor on GitHub</a>
</div>
</div>
......@@ -32,6 +32,8 @@ The type of cable you have to procure is listed in the table below:
+----------------------------+---------------------------+---------------+---------------------+
| Board | USB | Host capable? | Power required [2]_ |
+============================+===========================+===============+=====================+
| BeagleY-AI | High-speed USB-C | Unsupported | 1000mA |
+----------------------------+---------------------------+---------------+---------------------+
| BeaglePlay | High-speed USB-C | Yes [1]_ | 500mA |
+----------------------------+---------------------------+---------------+---------------------+
| BeagleV-Fire | High-speed USB-C | Yes [1]_ | 750mA |
......
......@@ -27,12 +27,14 @@ have to either supply the power via USB jack or a matching (center positive) bar
| | | | - `AA10E-050A(M)-R <https://mou.sr/3jrA4zZ>`_ |
+----------------------------+-------------------+-------------+-------------------------------------------------------------+
| BeagleBone AI-64 | Type-C | 5V @ 3A | - `AA65M-59FKA-R <https://mou.sr/3Dz9P1E>`_ |
+----------------------------+ | | - `Lenovo 65W USB Type C AC Adater <https://a.co/d/hH8SbG5>`|
+----------------------------+ | | - `Lenovo 65W USB Type C Adater <https://a.co/d/hH8SbG5>`_ |
| BeaglePlay | | | |
+----------------------------+ | | |
| BeagleBone AI | | | |
+----------------------------+ | | |
| BeagleV-Fire | | | |
| BeagleV-Fire | | | |
+----------------------------+ | | |
| BeagleY-AI | | | |
+----------------------------+-------------------+-------------+-------------------------------------------------------------+
| BeagleBone Green Gateway | 2.1mm Barrel Jack | 12V @ 5A | - `PSAC60M-120-R <https://mou.sr/3Rs657U>`_ |
+----------------------------+ | | |
......
......@@ -11,15 +11,6 @@ are all that need to be added to start building performance-optimized embedded a
expansion possibilities are enabled through familiar BeagleBone® cape headers, with hundreds of open-source
hardware examples and dozens of readily available embedded expansion options available off-the-shelf.
.. admonition:: License Terms
* This work is licensed under a `Creative Commons Attribution-ShareAlike 4.0 International License <http://creativecommons.org/licenses/by-sa/4.0/>`__
* Design materials and license can be found in the `git repository <https://git.beagleboard.org/beagleboard/beaglebone-ai-64>`__
* Use of the boards or design materials constitutes an agreement to the :ref:`boards-terms-and-conditions`
* Software images and purchase links available on the `board page <https://www.beagleboard.org/boards/beaglebone-ai-64>`__
* For export, emissions and other compliance, see :ref:`bbai64-support`
* All support for this design is through BeagleBoard.org community at `BeagleBoard.org forum <https://forum.beagleboard.org/tag/bbai64>`_.
.. image:: images/bbai64-45-front.jpg
:width: 740px
:align: center
......
......@@ -25,7 +25,7 @@ What’s Not in the Box
You will need to purchase:
- :ref:`USB C cable or USB C to USB A cable <accessories-cables-usb>`_
- :ref:`USB C cable or USB C to USB A cable <accessories-cables-usb>`
- MicroSD Card (optional)
- :ref:`Serial cable <molex-picoblade-serial-cables>` (optional)
......@@ -205,4 +205,4 @@ Press the small white connector into the 3 PIN debug header. The pinout is:
.. image:: images/BB_AI_3pincableattach_500px.jpg
:align: center
:alt: BeagleBone AI Overview
\ No newline at end of file
:alt: BeagleBone AI Overview
......@@ -10,15 +10,6 @@ digital-signal-processor (DSP) cores and embedded-vision-engine (EVE) cores supp
optimized TIDL machine learning OpenCL API with pre-installed tools. Focused on everyday
automation in industrial, commercial and home applications.
.. admonition:: License Terms
* This documentation is licensed under a `Creative Commons Attribution-ShareAlike 4.0 International License <http://creativecommons.org/licenses/by-sa/4.0/>`__
* Design materials and license can be found in the `git repository <https://git.beagleboard.org/beagleboard/beaglebone-ai>`__
* Use of the boards or design materials constitutes an agreement to the :ref:`boards-terms-and-conditions`
* Software images and purchase links available on the `board page <https://www.beagleboard.org/boards/beaglebone-ai>`__
* For export, emissions and other compliance, see :ref:`bbai-support`
* All support for BeagleBone AI design is through BeagleBoard.org community at `BeagleBoard.org forum <https://forum.beagleboard.org/tag/bbai>`_.
.. image:: images/BB_AI_handheld_500px.jpg
:width: 740
:align: center
......
......@@ -6,14 +6,6 @@ BeagleBone Black
BeagleBone Black is a low-cost, community-supported development platform for developers and hobbyists.
Boot Linux in under 10 seconds and get started on development in less than 5 minutes with just a single USB cable.
.. admonition:: License Terms
* This documentation is licensed under a `Creative Commons Attribution-ShareAlike 4.0 International License <http://creativecommons.org/licenses/by-sa/4.0/>`__
* Design materials and license can be found in the `git repository <https://git.beagleboard.org/beagleboard/beaglebone-black>`__
* Use of the boards or design materials constitutes an agreement to the :ref:`boards-terms-and-conditions`
* Software images and purchase links available on the `board page <https://www.beagleboard.org/boards/beaglebone-black>`__
* For export, emissions and other compliance, see :ref:`beagleboneblack-support`
.. image:: images/image1.jpg
:width: 598
:align: center
......
......@@ -15,13 +15,6 @@ robotics by `UCSD Flow Control and Coordinated Robotics Lab <http://robotics.ucs
`WowWee <http://www.wowwee.com/mip/>`_, `National Instruments LabVIEW <http://www.ni.com/labview/>`_
and of course the `BeagleBoard.org Foundation <https://beagleboard.org/about>`_.
.. admonition:: License Terms
* This documentation is licensed under a `Creative Commons Attribution-ShareAlike 4.0 International License <http://creativecommons.org/licenses/by-sa/4.0/>`__
* Design materials and license can be found in the `OpenBeagle repository <https://openbeagle.org/beagleboard/beaglebone-blue>`__
* Use of the boards or design materials constitutes an agreement to the :ref:`boards-terms-and-conditions`
* Software images and purchase links available on the `board page <https://www.beagleboard.org/boards/beaglebone-blue>`__
.. toctree::
:maxdepth: 1
......
......@@ -3,49 +3,43 @@
Demos & tutorials
#################
.. raw:: latex
\begin{comment}
.. card::
:link: beagleconnect-freedom-using-micropython
:link-type: ref
**Using MicroPython**
^^^
Getting started with micropython on your BeagleConnect board.
+++
.. admonition:: Complexity level
beginner
.. card::
:link: beagleconnect-freedom-using-zephyr
:link-type: ref
**Using Zephyr**
^^^
Getting started with Zephyr on your BeagleConnect board.
+++
.. admonition:: Complexity level
beginner
.. card::
:link: beagleconnect-freedom-using-greybus
:link-type: ref
**Using greybus**
^^^
Getting started with greybus on your BeagleConnect board.
+++
.. admonition:: Complexity level
beginner
.. raw:: latex
\end{comment}
.. only:: html
.. card::
:link: beagleconnect-freedom-using-micropython
:link-type: ref
**Using MicroPython**
^^^
Getting started with micropython on your BeagleConnect board.
+++
.. admonition:: Complexity level
beginner
.. card::
:link: beagleconnect-freedom-using-zephyr
:link-type: ref
**Using Zephyr**
^^^
Getting started with Zephyr on your BeagleConnect board.
+++
.. admonition:: Complexity level
beginner
.. card::
:link: beagleconnect-freedom-using-greybus
:link-type: ref
**Using greybus**
^^^
Getting started with greybus on your BeagleConnect board.
+++
.. admonition:: Complexity level
beginner
.. toctree::
:maxdepth: 1
......
......@@ -3,6 +3,8 @@
BeagleConnect Freedom
#####################
:bdg-danger:`Work in progress`
BeagleConnect™ Freedom is an open-hardware wireless hardware platform developed by BeagleBoard.org and built around the TI CC1352P7 microcontroller, which supports both
2.4-GHz and long-range, low-power Sub-1 GHz wireless protocols. Rapidly prototyping of IoT applications is accelerated by hardware compatibility with over 1,000 mikroBUS add-on sensors,
acutators, indicators and additional connectivity and storage options, and backed with software support utilizing the Zephyr scalable and modular real-time operating system, allowing developers
......@@ -16,125 +18,105 @@ over-the-air upgrades (OTA) capability. This MCU provides flexible support for m
:align: center
:alt: BeagleConnect™ Freedom board
.. important::
This is a work in progress, for latest documentation please
visit https://docs.beagleboard.org/latest/
.. admonition:: License Terms
* This documentation is licensed under a `Creative Commons Attribution-ShareAlike 4.0 International License <http://creativecommons.org/licenses/by-sa/4.0/>`__
* Design materials and license can be found in the `git repository <https://git.beagleboard.org/beagleconnect/freedom>`__
* Use of the boards or design materials constitutes an agreement to the :ref:`boards-terms-and-conditions`
* Software images and purchase links available on the `board page <https://www.beagleboard.org/boards/beagleconnect-freedom>`__
* For export, emissions and other compliance, see :ref:`beagleconnect-freedom-support`
* All support for BeagleConnect Freedom design is through BeagleBoard.org community at `BeagleBoard.org forum <https://forum.beagleboard.org/tag/bcf>`_.
.. raw:: latex
\begin{comment}
.. grid:: 1 1 2 2
:margin: 4 4 0 0
:gutter: 4
.. grid-item-card::
:link: beagleconnect-freedom-introduction
:link-type: ref
.. only:: html
**1. Introduction**
^^^
.. grid:: 1 1 2 2
:margin: 4 4 0 0
:gutter: 4
.. image:: images/chapter-thumbnails/01-introduction.*
:align: center
:alt: BeagleConnect™ Freedom Chapter1 thumbnail
+++
.. grid-item-card::
:link: beagleconnect-freedom-introduction
:link-type: ref
Introduction to BeagleConnect™ Freedom.
**1. Introduction**
^^^
.. image:: images/chapter-thumbnails/01-introduction.*
:align: center
:alt: BeagleConnect™ Freedom Chapter1 thumbnail
+++
.. grid-item-card::
:link: beagleconnect-freedom-quick-start
:link-type: ref
Introduction to BeagleConnect™ Freedom.
**2. Quick start**
^^^
.. image:: images/chapter-thumbnails/02-quick-start.*
:align: center
:alt: BeagleConnect™ Freedom Chapter2 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-quick-start
:link-type: ref
+++
**2. Quick start**
^^^
Getting started guide and tutorials.
.. image:: images/chapter-thumbnails/02-quick-start.*
:align: center
:alt: BeagleConnect™ Freedom Chapter2 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-design
:link-type: ref
+++
**3. Design & Specifications**
^^^
Getting started guide and tutorials.
.. image:: images/chapter-thumbnails/03-design-and-specifications.*
:align: center
:alt: BeagleConnect™ Freedom Chapter3 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-design
:link-type: ref
+++
**3. Design & Specifications**
^^^
Hardware and mechanical design and specifications of the BeagleConnect Freedom
board and enclosure for those who want to know their board inside and out.
.. image:: images/chapter-thumbnails/03-design-and-specifications.*
:align: center
:alt: BeagleConnect™ Freedom Chapter3 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-expansion
:link-type: ref
+++
**4. Expansion**
^^^
Hardware and mechanical design and specifications of the BeagleConnect Freedom
board and enclosure for those who want to know their board inside and out.
.. image:: images/chapter-thumbnails/04-connectors-and-pinouts.*
:align: center
:alt: BeagleConnect™ Freedom Chapter4 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-expansion
:link-type: ref
+++
**4. Expansion**
^^^
Connector pinout diagrams with expansion details so that you can
easily debug your connections and create custom expansion hardware.
.. image:: images/chapter-thumbnails/04-connectors-and-pinouts.*
:align: center
:alt: BeagleConnect™ Freedom Chapter4 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-demos
:link-type: ref
+++
**5. Demos & tutorials**
^^^
Connector pinout diagrams with expansion details so that you can
easily debug your connections and create custom expansion hardware.
.. image:: images/chapter-thumbnails/05-demos-and-tutorials.*
:align: center
:alt: BeagleConnect™ Freedom Chapter5 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-demos
:link-type: ref
+++
**5. Demos & tutorials**
^^^
Demos and tutorials to quickly learn about the BeagleConnect capabilities.
.. image:: images/chapter-thumbnails/05-demos-and-tutorials.*
:align: center
:alt: BeagleConnect™ Freedom Chapter5 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-support
:link-type: ref
+++
**6. Support**
^^^
Demos and tutorials to quickly learn about the BeagleConnect capabilities.
.. image:: images/chapter-thumbnails/06-support-documents.*
:align: center
:alt: BeagleConnect™ Freedom Chapter6 thumbnail
.. grid-item-card::
:link: beagleconnect-freedom-support
:link-type: ref
+++
**6. Support**
^^^
Additional supporting information, images, documents, change history and
hardware & software repositories including issue trackers.
.. image:: images/chapter-thumbnails/06-support-documents.*
:align: center
:alt: BeagleConnect™ Freedom Chapter6 thumbnail
.. raw:: latex
+++
\end{comment}
Additional supporting information, images, documents, change history and
hardware & software repositories including issue trackers.
.. toctree::
:maxdepth: 1
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment