<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">var searchResultsText=["Sorry, no documents matching your query.","Found &lt;b&gt;1&lt;/b&gt; document matching your query.","Found &lt;b&gt;$num&lt;/b&gt; documents matching your query. Showing best matches first."];
var serverUrl="https://searchdoc.mikroe.com";
var tagMap = {
  "mikrosdk": "../../"
};

/*
 @licstart  The following is the entire license notice for the JavaScript code in this file.

 The MIT License (MIT)

 Copyright (C) 1997-2020 by Dimitri van Heesch

 Permission is hereby granted, free of charge, to any person obtaining a copy of this software
 and associated documentation files (the "Software"), to deal in the Software without restriction,
 including without limitation the rights to use, copy, modify, merge, publish, distribute,
 sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:

 The above copyright notice and this permission notice shall be included in all copies or
 substantial portions of the Software.

 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
 BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

 @licend  The above is the entire license notice for the JavaScript code in this file
 */
function SearchBox(name, resultsPath, extension) {
  this.DOMSearchField = () =&gt; document.getElementById("MSearchField");
  this.DOMSearchBox = () =&gt; document.getElementById("MSearchBox");
  this.OnSearchFieldFocus = isActive =&gt; {
    if (isActive) {
      this.DOMSearchBox().className = 'MSearchBoxActive';
    } else {
      this.DOMSearchBox().className = 'MSearchBoxInactive';
    }
  }
}

function trim(s) {
  return s?s.replace(/^\s\s*/, '').replace(/\s\s*$/, ''):'';
}

function getURLParameter(name) {
  return decodeURIComponent((new RegExp('[?|&amp;]'+name+
         '='+'([^&amp;;]+?)(&amp;|#|;|$)').exec(location.search)
         ||[,""])[1].replace(/\+/g, '%20'))||null;
}

const entityMap = {
  "&amp;": "&amp;amp;",
  "&lt;": "&amp;lt;",
  "&gt;": "&amp;gt;",
  '"': '&amp;quot;',
  "'": '&amp;#39;',
  "/": '&amp;#x2F;'
};

function escapeHtml(s) {
  return String(s).replace(/[&amp;&lt;&gt;"'/]/g, function (s) {
    return entityMap[s];
  });
}

function searchFor(query,page,count) {
  $.getJSON(serverUrl+"?cb=?", {
    n:count,
    p:page,
    q:query
  },
  function(data) {
    const results = $('#searchresults');
    $('#MSearchField').val(query);
    if (data.hits&gt;0) {
      if (data.hits==1) {
        results.html('&lt;p&gt;'+searchResultsText[1]+'&lt;/p&gt;');
      } else {
        results.html('&lt;p&gt;'+searchResultsText[2].replace(/\$num/,data.hits)+'&lt;/p&gt;');
      }
      let r='&lt;table&gt;';
      $.each(data.items, function(i,item){
        let prefix = tagMap[item.tag];
        if (prefix) prefix+='/'; else prefix='';
        r+='&lt;tr class="searchresult"&gt;'+
           '&lt;td align="right"&gt;'+(data.first+i+1)+'.&lt;/td&gt;'+
           '&lt;td&gt;'+escapeHtml(item.type)+'&amp;#160;'+
                '&lt;a href="'+escapeHtml(prefix+item.url)+
                '"&gt;'+escapeHtml(item.name)+'&lt;/a&gt;';
        if (item.type=="source") {
          const l=item.url.match(/[1-9][0-9]*$/);
          if (l) r+=' at line '+parseInt(l[0]);
        }
        r+='&lt;/td&gt;';
        for (let i=0;i&lt;item.fragments.length;i++) {
          r+='&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;'+item.fragments[i]+'&lt;/td&gt;&lt;/tr&gt;';
        }
        r+='&lt;/tr&gt;';
      });
      r+='&lt;/table&gt;';
      if (data.pages&gt;1) { // write multi page navigation bar
        r+='&lt;div class="searchpages"&gt;';
        if (data.page&gt;0) {
          r+='&lt;span class="pages"&gt;&lt;a href="javascript:searchFor(\''+escapeHtml(query)+'\','+(page-1).toString()+','+count.toString()+')"&gt;&amp;laquo;&lt;/a&gt;&lt;/span&gt;&amp;#160;';
        }
        let firstPage = data.page-5;
        let lastPage  = data.page+5;
        if (firstPage&lt;0) {
          lastPage-=firstPage;
          firstPage=0;
        }
        if (lastPage&gt;data.pages) {
          lastPage=data.pages;
        }
        for (let i=firstPage;i&lt;lastPage;i++) {
          if (i==data.page) {
            r+='&lt;span class="pages"&gt;&lt;b&gt;'+(i+1).toString()+'&lt;/b&gt;&lt;/span&gt;&amp;#160;';
          } else {
            r+='&lt;span class="pages"&gt;&lt;a href="javascript:searchFor(\''+escapeHtml(query)+'\','+i.toString()+','+count.toString()+')"&gt;'+(i+1).toString()+'&lt;/a&gt;&lt;/span&gt;&amp;#160;';
          }
        }
        if (data.page+1&lt;data.pages) {
          r+='&lt;span class="pages"&gt;&lt;a href="javascript:searchFor(\''+escapeHtml(query)+'\','+(page+1).toString()+','+count.toString()+')"&gt;&amp;raquo;&lt;/a&gt;&lt;/span&gt;';
        }
        r+='&lt;/div&gt;';
      }
      results.append(r);
    } else {
      results.html('&lt;p&gt;'+searchResultsText[0]+'&lt;/p&gt;');
    }
  });
}
/* @license-end */

$(function() {
  var query = trim(getURLParameter('query'));
  if (query) {
    searchFor(query,0,20);
  } else {
    var results = $('#results');
    results.html('&lt;p&gt;Sorry, no documents matching your query.&lt;/p&gt;');
  }
});
</pre></body></html>