00001 /*! \file rprintfconf.h \brief printf library configuration. */ 00002 //**************************************************************************** 00003 // 00004 // File Name : 'rprintfconf.h' 00005 // Title : printf library configruation 00006 // Author : Pascal Stang - Copyright (C) 2000-2003 00007 // Created : 2000.12.26 00008 // Revised : 2003.5.01 00009 // Version : 0.8 00010 // Target MCU : Atmel AVR series and other targets 00011 // Editor Tabs : 4 00012 // 00013 // NOTE: This code is currently below version 1.0, and therefore is considered 00014 // to be lacking in some functionality or documentation, or may not be fully 00015 // tested. Nonetheless, you can expect most functions to work. 00016 // 00017 // This code is distributed under the GNU Public License 00018 // which can be found at http://www.gnu.org/licenses/gpl.txt 00019 // 00020 //**************************************************************************** 00021 00022 #ifndef RPRINTFCONF_H 00023 #define RPRINTFCONF_H 00024 00025 // select a printf function 00026 00027 //! RPRINTF_SIMPLE will compile a smaller, simpler, and faster printf() function 00028 #define RPRINTF_SIMPLE 00029 00030 //! RPRINTF_COMPLEX will compile a larger, more capable, and slower printf() function 00031 //#define RPRINTF_COMPLEX 00032 00033 // Enable/disable the floating-point printf function: rprintfFloat() 00034 // (adds +4600bytes or 2.2Kwords of code) 00035 //#define RPRINTF_FLOAT 00036 00037 #endif
1.3-rc2