?lang_form? ?lang_select? ?lang_submit? ?lang_endform?
{HEADER END}
{BLAME START}

library

?curdirlinks? -

Blame information for rev 6

Line No. Rev Author Line
1 6 kaklik <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3 <title>Procyon AVRlib: bitbuf.h Source File</title>
4 <link href="dox.css" rel="stylesheet" type="text/css">
5 </head><body>
6 <!-- Generated by Doxygen 1.4.2 -->
7 <div class="qindex"><a class="qindex" href="main.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
8 <h1>bitbuf.h</h1><a href="bitbuf_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*! \file bitbuf.h \brief Multipurpose bit buffer structure and methods. */</span>
9 00002 <span class="comment">//*****************************************************************************</span>
10 00003 <span class="comment">//</span>
11 00004 <span class="comment">// File Name : 'bitbuf.c'</span>
12 00005 <span class="comment">// Title : Multipurpose bit buffer structure and methods</span>
13 00006 <span class="comment">// Author : Pascal Stang - Copyright (C) 2001-2002</span>
14 00007 <span class="comment">// Created : 7/10/2002</span>
15 00008 <span class="comment">// Revised : 7/10/2002</span>
16 00009 <span class="comment">// Version : 0.5</span>
17 00010 <span class="comment">// Target MCU : any</span>
18 00011 <span class="comment">// Editor Tabs : 4</span>
19 00012 <span class="comment">//</span><span class="comment"></span>
20 00013 <span class="comment">/// \ingroup general</span>
21 00014 <span class="comment">/// \defgroup bitbuf Generic Bit-Buffer Structure and Function Library (bitbuf.c)</span>
22 00015 <span class="comment">/// \code #include "bitbuf.h" \endcode</span>
23 00016 <span class="comment">/// \par Overview</span>
24 00017 <span class="comment">/// This bit-buffer structure provides an easy and efficient way to store and</span>
25 00018 <span class="comment">/// process bits. You can create as many bit buffers as you like (within</span>
26 00019 <span class="comment">/// memory limits), and then use this common set of functions to access each</span>
27 00020 <span class="comment">/// buffer. Supported functions include sequential getting and storing of</span>
28 00021 <span class="comment">/// bits, array-like get, buffer flush (dump data), and reset-to-beginning.</span>
29 00022 <span class="comment">/// This buffer is not dynamically allocated, it has a user-defined fixed </span>
30 00023 <span class="comment">/// maximum size.</span>
31 00024 <span class="comment">///</span>
32 00025 <span class="comment"></span><span class="comment">// This code is distributed under the GNU Public License</span>
33 00026 <span class="comment">// which can be found at http://www.gnu.org/licenses/gpl.txt</span>
34 00027 <span class="comment">//</span>
35 00028 <span class="comment">//*****************************************************************************</span><span class="comment"></span>
36 00029 <span class="comment">//@{</span>
37 00030 <span class="comment"></span>
38 00031 <span class="preprocessor">#ifndef BITBUF_H</span>
39 00032 <span class="preprocessor"></span><span class="preprocessor">#define BITBUF_H</span>
40 00033 <span class="preprocessor"></span>
41 00034 <span class="comment">// structure/typdefs</span>
42 00035
43 00036 <span class="comment">// the BitBuffer structure</span>
44 00037 <span class="keyword">typedef</span> <span class="keyword">struct </span>struct_BitBuf
45 00038 {
46 00039 <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> *dataptr; <span class="comment">// the physical memory address where the buffer is stored</span>
47 00040 <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> size; <span class="comment">// the allocated byte size of the buffer</span>
48 00041 <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> bytePos; <span class="comment">// current byte position</span>
49 00042 <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> bitPos; <span class="comment">// current bit position</span>
50 00043 <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> datalength; <span class="comment">// the length of the data (in bits) currently in the buffer</span>
51 00044 <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> dataindex; <span class="comment">// the index (in bits) into the buffer where the data starts</span>
52 00045 } BitBuf;
53 00046
54 00047 <span class="comment">// function prototypes</span>
55 00048 <span class="comment"></span>
56 00049 <span class="comment">//! initialize a buffer to start at a given address and have given size</span>
57 00050 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__bitbuf.html#ga1">bitbufInit</a>(BitBuf* bitBuffer, <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> *start, <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> bytesize);
58 00051 <span class="comment"></span>
59 00052 <span class="comment">//! get the bit at the current position in the buffer</span>
60 00053 <span class="comment"></span><span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="group__bitbuf.html#ga2">bitbufGet</a>(BitBuf* bitBuffer);
61 00054 <span class="comment"></span>
62 00055 <span class="comment">//! get a bit at the specified index in the buffer (kind of like array access)</span>
63 00056 <span class="comment"></span><span class="comment">// ** note: this does not remove/delete the bit that was read</span>
64 00057 <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> <a class="code" href="group__bitbuf.html#ga3">bitbufGetAtIndex</a>(BitBuf* bitBuffer, <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> bitIndex);
65 00058 <span class="comment"></span>
66 00059 <span class="comment">//! store a bit at the current position in the buffer</span>
67 00060 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__bitbuf.html#ga4">bitbufStore</a>(BitBuf* bitBuffer, <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> bit);
68 00061 <span class="comment"></span>
69 00062 <span class="comment">//! return the number of bits in the buffer</span>
70 00063 <span class="comment"></span><span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> <a class="code" href="group__bitbuf.html#ga5">bitbufGetDataLength</a>(BitBuf* bitBuffer);
71 00064
72 00065 <span class="comment">// check if the buffer is full/not full (returns non-zero value if not full)</span>
73 00066 <span class="comment">//unsigned char bitbufIsNotFull(cBuffer* buffer);</span>
74 00067 <span class="comment"></span>
75 00068 <span class="comment">//! resets the read/write position of the buffer to beginning</span>
76 00069 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__bitbuf.html#ga6">bitbufReset</a>(BitBuf* bitBuffer);
77 00070 <span class="comment"></span>
78 00071 <span class="comment">//! flush (clear) the contents of the buffer</span>
79 00072 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__bitbuf.html#ga7">bitbufFlush</a>(BitBuf* bitBuffer);
80 00073
81 00074 <span class="preprocessor">#endif</span>
82 00075 <span class="preprocessor"></span><span class="comment">//@}</span>
83 </span></pre></div><hr size="1"><address style="align: right;"><small>Generated on Sun Oct 29 03:41:06 2006 for Procyon AVRlib by&nbsp;
84 <a href="http://www.doxygen.org/index.html">
85 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.2 </small></address>
86 </body>
87 </html>
{BLAME END}
{FOOTER START}

Powered by WebSVN v2.8.3