⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 type_8h-source.html

📁 Free Usb Stack for NXP LPC2xxx microcontrollers.
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"><title>LPCUSB: type.h Source File</title><link href="doxygen.css" rel="stylesheet" type="text/css"><link href="tabs.css" rel="stylesheet" type="text/css"></head><body><!-- Generated by Doxygen 1.5.1 --><div class="tabs">  <ul>    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>    <li><a href="annotated.html"><span>Classes</span></a></li>    <li id="current"><a href="files.html"><span>Files</span></a></li>    <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>  </ul></div><div class="tabs">  <ul>    <li><a href="files.html"><span>File&nbsp;List</span></a></li>    <li><a href="globals.html"><span>File&nbsp;Members</span></a></li>  </ul></div><h1>type.h</h1><a href="type_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span><a name="l00002"></a>00002 <span class="comment">        LPCUSB, an USB device driver for LPC microcontrollers   </span><a name="l00003"></a>00003 <span class="comment">        Copyright (C) 2006 Bertrik Sikken (bertrik@sikken.nl)</span><a name="l00004"></a>00004 <span class="comment"></span><a name="l00005"></a>00005 <span class="comment">        Redistribution and use in source and binary forms, with or without</span><a name="l00006"></a>00006 <span class="comment">        modification, are permitted provided that the following conditions are met:</span><a name="l00007"></a>00007 <span class="comment"></span><a name="l00008"></a>00008 <span class="comment">        1. Redistributions of source code must retain the above copyright</span><a name="l00009"></a>00009 <span class="comment">           notice, this list of conditions and the following disclaimer.</span><a name="l00010"></a>00010 <span class="comment">        2. Redistributions in binary form must reproduce the above copyright</span><a name="l00011"></a>00011 <span class="comment">           notice, this list of conditions and the following disclaimer in the</span><a name="l00012"></a>00012 <span class="comment">           documentation and/or other materials provided with the distribution.</span><a name="l00013"></a>00013 <span class="comment">        3. The name of the author may not be used to endorse or promote products</span><a name="l00014"></a>00014 <span class="comment">           derived from this software without specific prior written permission.</span><a name="l00015"></a>00015 <span class="comment"></span><a name="l00016"></a>00016 <span class="comment">        THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR</span><a name="l00017"></a>00017 <span class="comment">        IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES</span><a name="l00018"></a>00018 <span class="comment">        OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.</span><a name="l00019"></a>00019 <span class="comment">        IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, </span><a name="l00020"></a>00020 <span class="comment">        INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT</span><a name="l00021"></a>00021 <span class="comment">        NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,</span><a name="l00022"></a>00022 <span class="comment">        DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY</span><a name="l00023"></a>00023 <span class="comment">        THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span><a name="l00024"></a>00024 <span class="comment">        (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF</span><a name="l00025"></a>00025 <span class="comment">        THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span><a name="l00026"></a>00026 <span class="comment">*/</span><a name="l00027"></a>00027 <a name="l00028"></a>00028 <a name="l00035"></a>00035 <span class="preprocessor">#ifndef _TYPE_H_</span><a name="l00036"></a>00036 <span class="preprocessor"></span><span class="preprocessor">#define _TYPE_H_</span><a name="l00037"></a>00037 <span class="preprocessor"></span><a name="l00038"></a><a class="code" href="type_8h.html#3cb25ca6f51f003950f9625ff05536fc">00038</a> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span>           <a class="code" href="type_8h.html#3cb25ca6f51f003950f9625ff05536fc">U8</a>;             <a name="l00039"></a><a class="code" href="type_8h.html#c4de1ae30664d5bd186fb6b2ae44e725">00039</a> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> <span class="keywordtype">int</span>      <a class="code" href="type_8h.html#c4de1ae30664d5bd186fb6b2ae44e725">U16</a>;    <a name="l00040"></a><a class="code" href="type_8h.html#c3df7cf3c8cb172a588adec881447d68">00040</a> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span>            <a class="code" href="type_8h.html#c3df7cf3c8cb172a588adec881447d68">U32</a>;    <a name="l00042"></a><a class="code" href="type_8h.html#050c65e107f0c828f856a231f4b4e788">00042</a> <span class="keyword">typedef</span> <span class="keywordtype">int</span>                                     <a class="code" href="type_8h.html#050c65e107f0c828f856a231f4b4e788">BOOL</a>;   <a name="l00044"></a><a class="code" href="type_8h.html#a8cecfc5c5c054d2875c03e77b7be15d">00044</a> <span class="preprocessor">#define TRUE    1                                       </span><a name="l00045"></a><a class="code" href="type_8h.html#a93f0eb578d23995850d61f7d61c55c1">00045</a> <span class="preprocessor">#define FALSE   0                                       </span><a name="l00047"></a>00047 <span class="preprocessor">#ifndef NULL</span><a name="l00048"></a><a class="code" href="type_8h.html#070d2ce7b6bb7e5c05602aa8c308d0c4">00048</a> <span class="preprocessor"></span><span class="preprocessor">#define NULL    ((void*)0)                      </span><a name="l00049"></a>00049 <span class="preprocessor">#endif</span><a name="l00050"></a>00050 <span class="preprocessor"></span><a name="l00051"></a>00051 <span class="comment">/* some other useful macros */</span><a name="l00052"></a><a class="code" href="type_8h.html#74e75242132eaabbc1c512488a135926">00052</a> <span class="preprocessor">#define MIN(x,y)        ((x)&lt;(y)?(x):(y))       </span><a name="l00053"></a><a class="code" href="type_8h.html#acc3ee1a7f283f8ef65cea31f4436a95">00053</a> <span class="preprocessor">#define MAX(x,y)        ((x)&gt;(y)?(x):(y))       </span><a name="l00056"></a>00056 <span class="preprocessor">#endif </span><span class="comment">/* _TYPE_H_ */</span><a name="l00057"></a>00057 </pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Jul 27 12:07:01 2007 for LPCUSB by&nbsp;<a href="http://www.doxygen.org/index.html"><img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.1 </small></address></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -