blob: f9eb6afef46debbcaee5e08e34a965bfb3f69a56 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
//*****************************************************************************
// +--+
// | ++----+
// +-++ |
// | |
// +-+--+ |
// | +--+--+
// +----+ Copyright (c) 2009 Code Red Technologies Ltd.
//
// consoleprint.h - provides a "print string to console" function that uses
// the CodeRed semihosting debug channel functionality.
//
// Software License Agreement
//
// The software is owned by Code Red Technologies and/or its suppliers, and is
// protected under applicable copyright laws. All rights are reserved. Any
// use in violation of the foregoing restrictions may subject the user to criminal
// sanctions under applicable laws, as well as to civil liability for the breach
// of the terms and conditions of this license.
//
// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT
// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH
// CODE RED TECHNOLOGIES LTD.
//
//*****************************************************************************
#ifndef CONSOLEPRINT_H_
#define CONSOLEPRINT_H_
//#if !(defined(__REDLIB__))
//#error "consoleprint.c can only be built for projects built with Redlib"
//#endif
/*
* consoleprint() - provides a "print string to console" function that uses
* the CodeRed semihosting debug channel functionality. Because this can
* send a full string in one operation, rather than a single character (as
* using printf will) this will provide faster prints to the console.
*
* Input - pointer to zero-terminated character string
* Returns 0 if successful
*
* Note that in order to consoleprint() to actually display to the console,
* the semihosting interface using stdout must have been setup. The easiest
* way to do this is to call printf() once at the start of your application
*/
int consoleprint(char *cpstring);
#endif /* LED_CONFIG_H_ */
|