Update cpu.h dir.
[bertos.git] / mware / formatwr.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \version $Id$
34  *
35  * \brief Basic "printf", "sprintf" and "fprintf" formatter.
36  */
37
38 /*#*
39  *#* $Log$
40  *#* Revision 1.11  2006/07/19 12:56:27  bernie
41  *#* Convert to new Doxygen style.
42  *#*
43  *#* Revision 1.10  2005/11/04 16:20:02  bernie
44  *#* Fix reference to README.devlib in header.
45  *#*
46  *#* Revision 1.9  2005/07/19 07:25:46  bernie
47  *#* Use appconfig.h instead of cfg/config.h.
48  *#*
49  *#* Revision 1.8  2005/04/11 19:10:28  bernie
50  *#* Include top-level headers from cfg/ subdir.
51  *#*
52  *#* Revision 1.7  2005/02/16 20:28:03  bernie
53  *#* Add %S formatter.
54  *#*
55  *#* Revision 1.6  2005/01/08 08:50:06  bernie
56  *#* Make more portable.
57  *#*
58  *#* Revision 1.5  2004/08/25 14:12:09  rasky
59  *#* Aggiornato il comment block dei log RCS
60  *#*
61  *#* Revision 1.4  2004/08/04 15:53:47  rasky
62  *#* Nuove opzioni di configurazione per formatted_write e ridotto maggiormente l'utilizzo dellos tack
63  *#*
64  *#* Revision 1.3  2004/07/29 22:57:09  bernie
65  *#* Add values for new-style CONFIG_PRINTF option.
66  *#*
67  *#* Revision 1.2  2004/06/03 11:27:09  bernie
68  *#* Add dual-license information.
69  *#*
70  *#* Revision 1.1  2004/05/23 15:43:16  bernie
71  *#* Import mware modules.
72  *#*
73  *#*/
74 #ifndef MWARE_FORMATWR_H
75 #define MWARE_FORMATWR_H
76
77 #include <stdarg.h> /* va_list */
78 #include <appconfig.h>
79 #include <cpu/cpu.h>    /* CPU_HARVARD */
80
81 /**
82  * \name _formatted_write() configuration
83  * \{
84  */
85 #define PRINTF_DISABLED    0
86 #define PRINTF_NOMODIFIERS 1
87 #define PRINTF_REDUCED     2
88 #define PRINTF_NOFLOAT     3
89 #define PRINTF_FULL        4
90 /* \} */
91
92 #ifndef CONFIG_PRINTF_RETURN_COUNT
93         /** Enable/disable _formatted_write return value */
94         #define CONFIG_PRINTF_RETURN_COUNT 1
95 #endif
96
97 int
98 _formatted_write(
99         const char *format,
100         void put_char_func(char c, void *user_data),
101         void *user_data,
102         va_list ap);
103
104 #if CPU_HARVARD
105         #include <mware/pgm.h>
106         int _formatted_write_P(
107                 const char * PROGMEM format,
108                 void put_char_func(char c, void *user_data),
109                 void *user_data,
110                 va_list ap);
111 #endif /* CPU_HARVARD */
112
113 #endif /* MWARE_FORMATWR_H */
114