Skip to content

Commit

Permalink
deploy: b28198c
Browse files Browse the repository at this point in the history
  • Loading branch information
SaikiranGudla committed Oct 23, 2024
1 parent 05fe0f5 commit 16703b7
Show file tree
Hide file tree
Showing 49 changed files with 126 additions and 132 deletions.
4 changes: 2 additions & 2 deletions .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: ce5e57dbb55a07b562ef98d50cc3f93a
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 8166d7df7d72b61f9c65efe597a2f8e8
tags: 645f666f9bcd5a90fca523b33c5a78b7
1 change: 1 addition & 0 deletions _sources/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ The following have device-specific implementations in MATLAB and Simulink. In ge
"AD5791", "Zedboard", "Yes", "No", "ADI (2021b)"
"AD7124-4", "Zedboard", "Yes", "No", "ADI (2021b)"
"AD7124-8", "Zedboard", "Yes", "No", "ADI (2021b)"
"AD4050", "SDP-K1", "Yes", "No", "ADI (2021b)"
"AD4052", "SDP-K1", "Yes", "No", "ADI (2021b)"
"AD4170", "SDP-K1", "Yes", "No", "ADI (2021b)"
"AD7190", "SDP-K1", "Yes", "No", "ADI (2021b)"
Expand Down
15 changes: 2 additions & 13 deletions _static/basic.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
/*
* basic.css
* ~~~~~~~~~
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/

/* -- main layout ----------------------------------------------------------- */
Expand Down Expand Up @@ -115,15 +108,11 @@ img {
/* -- search page ----------------------------------------------------------- */

ul.search {
margin: 10px 0 0 20px;
padding: 0;
margin-top: 10px;
}

ul.search li {
padding: 5px 0 5px 20px;
background-image: url(file.png);
background-repeat: no-repeat;
background-position: 0 7px;
padding: 5px 0;
}

ul.search li a {
Expand Down
7 changes: 0 additions & 7 deletions _static/doctools.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
/*
* doctools.js
* ~~~~~~~~~~~
*
* Base JavaScript utilities for all Sphinx HTML documentation.
*
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
"use strict";

Expand Down
7 changes: 0 additions & 7 deletions _static/language_data.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
/*
* language_data.js
* ~~~~~~~~~~~~~~~~
*
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
*
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/

var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
Expand Down
38 changes: 25 additions & 13 deletions _static/searchtools.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
/*
* searchtools.js
* ~~~~~~~~~~~~~~~~
*
* Sphinx JavaScript utilities for the full-text search.
*
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
"use strict";

Expand All @@ -20,7 +13,7 @@ if (typeof Scorer === "undefined") {
// and returns the new score.
/*
score: result => {
const [docname, title, anchor, descr, score, filename] = result
const [docname, title, anchor, descr, score, filename, kind] = result
return score
},
*/
Expand All @@ -47,6 +40,14 @@ if (typeof Scorer === "undefined") {
};
}

// Global search result kind enum, used by themes to style search results.
class SearchResultKind {
static get index() { return "index"; }
static get object() { return "object"; }
static get text() { return "text"; }
static get title() { return "title"; }
}

const _removeChildren = (element) => {
while (element && element.lastChild) element.removeChild(element.lastChild);
};
Expand All @@ -64,9 +65,13 @@ const _displayItem = (item, searchTerms, highlightTerms) => {
const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
const contentRoot = document.documentElement.dataset.content_root;

const [docName, title, anchor, descr, score, _filename] = item;
const [docName, title, anchor, descr, score, _filename, kind] = item;

let listItem = document.createElement("li");
// Add a class representing the item's type:
// can be used by a theme's CSS selector for styling
// See SearchResultKind for the class names.
listItem.classList.add(`kind-${kind}`);
let requestUrl;
let linkUrl;
if (docBuilder === "dirhtml") {
Expand Down Expand Up @@ -115,8 +120,10 @@ const _finishSearch = (resultCount) => {
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories."
);
else
Search.status.innerText = _(
"Search finished, found ${resultCount} page(s) matching the search query."
Search.status.innerText = Documentation.ngettext(
"Search finished, found one page matching the search query.",
"Search finished, found ${resultCount} pages matching the search query.",
resultCount,
).replace('${resultCount}', resultCount);
};
const _displayNextItem = (
Expand All @@ -138,7 +145,7 @@ const _displayNextItem = (
else _finishSearch(resultCount);
};
// Helper function used by query() to order search results.
// Each input is an array of [docname, title, anchor, descr, score, filename].
// Each input is an array of [docname, title, anchor, descr, score, filename, kind].
// Order the results by score (in opposite order of appearance, since the
// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically.
const _orderResultsByScoreThenName = (a, b) => {
Expand Down Expand Up @@ -248,6 +255,7 @@ const Search = {
searchSummary.classList.add("search-summary");
searchSummary.innerText = "";
const searchList = document.createElement("ul");
searchList.setAttribute("role", "list");
searchList.classList.add("search");

const out = document.getElementById("search-results");
Expand Down Expand Up @@ -318,7 +326,7 @@ const Search = {
const indexEntries = Search._index.indexentries;

// Collect multiple result groups to be sorted separately and then ordered.
// Each is an array of [docname, title, anchor, descr, score, filename].
// Each is an array of [docname, title, anchor, descr, score, filename, kind].
const normalResults = [];
const nonMainIndexResults = [];

Expand All @@ -337,6 +345,7 @@ const Search = {
null,
score + boost,
filenames[file],
SearchResultKind.title,
]);
}
}
Expand All @@ -354,6 +363,7 @@ const Search = {
null,
score,
filenames[file],
SearchResultKind.index,
];
if (isMain) {
normalResults.push(result);
Expand Down Expand Up @@ -475,6 +485,7 @@ const Search = {
descr,
score,
filenames[match[0]],
SearchResultKind.object,
]);
};
Object.keys(objects).forEach((prefix) =>
Expand Down Expand Up @@ -585,6 +596,7 @@ const Search = {
null,
score,
filenames[file],
SearchResultKind.text,
]);
}
return results;
Expand Down
2 changes: 1 addition & 1 deletion _static/style.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _static/style.min.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions common/data_streaming.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>Data Streaming &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions common/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>Examples &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions common/installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>Installation &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions common/limitations.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>Limitations &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions common/support.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>Support &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="_static/style.min.css?v=3e3e1b4d" />
<script src="_static/documentation_options.js?v=5929fcd5"></script>
<script src="_static/doctools.js?v=9a2dae69"></script>
<script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="#" />
Expand Down
24 changes: 15 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>Precision Toolbox for MATLAB &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="_static/style.min.css?v=3e3e1b4d" />
<script src="_static/documentation_options.js?v=5929fcd5"></script>
<script src="_static/doctools.js?v=9a2dae69"></script>
<script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="genindex.html" />
Expand Down Expand Up @@ -404,43 +404,49 @@ <h1>Precision Toolbox for MATLAB<a class="headerlink" href="#precision-toolbox-f
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-even"><td><p>AD4052</p></td>
<tr class="row-even"><td><p>AD4050</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-odd"><td><p>AD4170</p></td>
<tr class="row-odd"><td><p>AD4052</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-even"><td><p>AD7190</p></td>
<tr class="row-even"><td><p>AD4170</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-odd"><td><p>AD7192</p></td>
<tr class="row-odd"><td><p>AD7190</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-even"><td><p>AD7193</p></td>
<tr class="row-even"><td><p>AD7192</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-odd"><td><p>AD7194</p></td>
<tr class="row-odd"><td><p>AD7193</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-even"><td><p>AD7195</p></td>
<tr class="row-even"><td><p>AD7194</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
<td><p>ADI (2021b)</p></td>
</tr>
<tr class="row-odd"><td><p>AD7195</p></td>
<td><p>SDP-K1</p></td>
<td><p>Yes</p></td>
<td><p>No</p></td>
Expand Down
4 changes: 2 additions & 2 deletions reference_api/AD2S1210_Rx.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>adi.AD2S1210.Rx &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions reference_api/AD4000_Rx.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>adi.AD4000.Rx &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions reference_api/AD4001_Rx.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>adi.AD4001.Rx &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions reference_api/AD4002_Rx.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>adi.AD4002.Rx &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
4 changes: 2 additions & 2 deletions reference_api/AD4003_Rx.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<title>adi.AD4003.Rx &#8212; Precision Toolbox documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=8e8a900e" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=765fa3cc" />
<link rel="stylesheet" type="text/css" href="../_static/style.min.css?v=3e3e1b4d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9a2dae69"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script defer="" src="../_static/app.umd.js?v=c93eadd1"></script>
<link rel="index" title="Index" href="../genindex.html" />
Expand Down
Loading

0 comments on commit 16703b7

Please sign in to comment.