Documentation improvements
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||
<meta name="generator" content="Doxygen 1.9.1"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>PicoVGA: Getting Started</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
@@ -29,7 +29,7 @@
|
||||
<td id="projectlogo"><img alt="Logo" src="logo.png"/></td>
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">PicoVGA
|
||||
 <span id="projectnumber">1.0-cmake</span>
|
||||
 <span id="projectnumber">1.2-cmake</span>
|
||||
</div>
|
||||
<div id="projectbrief">VGA/TV display on Raspberry Pico</div>
|
||||
</td>
|
||||
@@ -38,10 +38,10 @@
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.8.17 -->
|
||||
<!-- Generated by Doxygen 1.9.1 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
@@ -90,7 +90,8 @@ $(document).ready(function(){initNavTree('gettingstarted.html',''); initResizabl
|
||||
<div class="title">Getting Started </div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="textblock"><h1><a class="anchor" id="autotoc_md3"></a>
|
||||
<div class="textblock"><p><a class="anchor" id="md_pages_GettingStarted"></a> </p>
|
||||
<h1><a class="anchor" id="autotoc_md3"></a>
|
||||
Installing PicoVGA</h1>
|
||||
<ol type="1">
|
||||
<li>Make sure you have the <a href="https://github.com/raspberrypi/pico-sdk">Pico SDK</a> installed.</li>
|
||||
@@ -142,7 +143,7 @@ Configuring PicoVGA</h1>
|
||||
<p>The <code><a class="el" href="vga__config_8h_source.html">vga_config.h</a></code> contains the PicoVGA library settings, such as the size of the render buffers. You usually do not need to pay attention to this file. You usually only have to modify it in the following cases:</p>
|
||||
<ul>
|
||||
<li>When you use a display resolution greater than 640x480 pixels. Typically, the configuration file sets the maximum resolution to 640x480. This must be adjusted at higher resolutions to allow the library to reserve larger buffers for rendering functions.</li>
|
||||
<li>If there is not enough RAM. There is still some headroom where you can save some memory. First, you can reduce the MAXX, MAXY, and MAXLINE resolution settings down to a real values. Next, you can reduce the number of LAYERS down to the actual value used (in the range of 1 to 4). Finally, you can reduce the number of segments and stripes to the actual value SEGMAX and STRIPMAX (minimum is 1).</li>
|
||||
<li>If there is not enough RAM. There is still some headroom where you can save some memory. First, you can reduce the <code>MAXX</code>, <code>MAXY</code>, and <code>MAXLINE</code> resolution settings down to a real values. Next, you can reduce the number of LAYERS down to the actual value used (in the range of 1 to 4). Finally, you can reduce the number of segments and stripes to the actual value <code>SEGMAX</code> and <code>STRIPMAX</code> (minimum is 1).</li>
|
||||
<li>The third case is to use of a large number of display stripes and segments. Normally, the values here are set to 8 stripes (=horizontal strips) and 8 segments (=vertical division of each strip).</li>
|
||||
</ul>
|
||||
<p>If you have an older monitor that requires VGA VSync, uncomment the line the <code>CMakeLists.txt</code> file that sets the vsync pin:</p>
|
||||
@@ -155,9 +156,7 @@ Configuring PicoVGA</h1>
|
||||
<!-- start footer part -->
|
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||
<ul>
|
||||
<li class="footer">Generated by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||
<li class="footer">Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1 </li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user