NIBO Library  2.11
nibocc/i2cmaster.hpp
gehe zur Dokumentation dieser Datei
00001 /*  BSD-License:
00002 
00003 Copyright (c) 2007 by Nils Springob, nicai-systems, Germany
00004 
00005 All rights reserved.
00006 
00007 Redistribution and use in source and binary forms, with or without modification,
00008 are permitted provided that the following conditions are met:
00009 
00010   * Redistributions of source code must retain the above copyright notice,
00011     this list of conditions and the following disclaimer.
00012   * Redistributions in binary form must reproduce the above copyright notice,
00013     this list of conditions and the following disclaimer in the documentation
00014     and/or other materials provided with the distribution.
00015   * Neither the name nicai-systems nor the names of its contributors may be
00016     used to endorse or promote products derived from this software without
00017     specific prior written permission.
00018 
00019 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00020 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00021 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
00022 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
00023 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00024 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00025 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00026 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00027 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00028 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00029 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00030 
00031 */
00032 
00039 #ifndef NIBOCC_I2CMASTER_HPP_
00040 #define NIBOCC_I2CMASTER_HPP_
00041 #if defined(NIBOCC_USE_I2CMASTER) || defined (DOXYGEN)
00042 
00043 #include <inttypes.h>
00044 #include "nibo/i2cmaster.h"
00045 
00046 namespace nibocc {
00047 
00051 class I2CMaster
00052 {
00053   public:
00054 
00058     static uint8_t get_size() { return ::i2c_size;}
00059 
00063     static uint8_t * get_buffer() { return ::i2c_buf; }
00064 
00068     enum {
00069       BUSY    = ::I2C_BUSY,
00070       IDLE    = ::I2C_IDLE,
00071       SUCCESS = ::I2C_SUCCESS,
00072       ERROR   = ::I2C_ERROR
00073     };
00074 
00078     static void init() {::i2c_init();}
00079 
00083     static uint8_t start_transmission() {return ::i2c_start_transmission();}
00084 
00088     static uint8_t status() { return ::i2c_status();}
00089 
00093     static uint8_t wait_transmission() { return ::i2c_wait_transmission();}
00094 
00095 };
00096 
00097 template<int ADDR> class I2CAddress
00098 {
00099   public:
00100     enum { TX = ((ADDR)<<1),
00101            RX = (((ADDR)<<1)+1) };
00102 };
00103 
00104 } // namespace
00105 #endif // NIBOCC_USE_I2CMASTER
00106 #endif // NIBOCC_I2CMASTER_HPP_

Erzeugt am Fre Jun 3 2011 15:48:39 für NIBO Library von doxygen 1.7.4-20110426