1 |
572 |
jeremybenn |
/*This file is prepared for Doxygen automatic documentation generation.*/
|
2 |
|
|
/*! \file *********************************************************************
|
3 |
|
|
*
|
4 |
|
|
* \brief System-specific implementation of the \ref __read function used by
|
5 |
|
|
the standard library.
|
6 |
|
|
*
|
7 |
|
|
* - Compiler: IAR EWAVR32
|
8 |
|
|
* - Supported devices: All AVR32 devices with a USART module can be used.
|
9 |
|
|
* - AppNote:
|
10 |
|
|
*
|
11 |
|
|
* \author Atmel Corporation: http://www.atmel.com \n
|
12 |
|
|
* Support and FAQ: http://support.atmel.no/
|
13 |
|
|
*
|
14 |
|
|
******************************************************************************/
|
15 |
|
|
|
16 |
|
|
/* Copyright (c) 2007, Atmel Corporation All rights reserved.
|
17 |
|
|
*
|
18 |
|
|
* Redistribution and use in source and binary forms, with or without
|
19 |
|
|
* modification, are permitted provided that the following conditions are met:
|
20 |
|
|
*
|
21 |
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
22 |
|
|
* this list of conditions and the following disclaimer.
|
23 |
|
|
*
|
24 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
25 |
|
|
* this list of conditions and the following disclaimer in the documentation
|
26 |
|
|
* and/or other materials provided with the distribution.
|
27 |
|
|
*
|
28 |
|
|
* 3. The name of ATMEL may not be used to endorse or promote products derived
|
29 |
|
|
* from this software without specific prior written permission.
|
30 |
|
|
*
|
31 |
|
|
* THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
32 |
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
33 |
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND
|
34 |
|
|
* SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT,
|
35 |
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
36 |
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
37 |
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
38 |
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
39 |
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
40 |
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
41 |
|
|
*/
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
#include <yfuns.h>
|
45 |
|
|
#include <avr32/io.h>
|
46 |
|
|
#include "usart.h"
|
47 |
|
|
|
48 |
|
|
|
49 |
|
|
_STD_BEGIN
|
50 |
|
|
|
51 |
|
|
|
52 |
|
|
#pragma module_name = "?__read"
|
53 |
|
|
|
54 |
|
|
|
55 |
|
|
extern volatile avr32_usart_t *volatile stdio_usart_base;
|
56 |
|
|
|
57 |
|
|
|
58 |
|
|
/*! \brief Reads a number of bytes, at most \a size, into the memory area
|
59 |
|
|
* pointed to by \a buffer.
|
60 |
|
|
*
|
61 |
|
|
* \param handle File handle to read from.
|
62 |
|
|
* \param buffer Pointer to buffer to write read bytes to.
|
63 |
|
|
* \param size Number of bytes to read.
|
64 |
|
|
*
|
65 |
|
|
* \return The number of bytes read, \c 0 at the end of the file, or
|
66 |
|
|
* \c _LLIO_ERROR on failure.
|
67 |
|
|
*/
|
68 |
|
|
size_t __read(int handle, unsigned char *buffer, size_t size)
|
69 |
|
|
{
|
70 |
|
|
int nChars = 0;
|
71 |
|
|
|
72 |
|
|
// This implementation only reads from stdin.
|
73 |
|
|
// For all other file handles, it returns failure.
|
74 |
|
|
if (handle != _LLIO_STDIN)
|
75 |
|
|
{
|
76 |
|
|
return _LLIO_ERROR;
|
77 |
|
|
}
|
78 |
|
|
|
79 |
|
|
for (; size > 0; --size)
|
80 |
|
|
{
|
81 |
|
|
int c = usart_getchar(stdio_usart_base);
|
82 |
|
|
if (c < 0)
|
83 |
|
|
break;
|
84 |
|
|
|
85 |
|
|
*buffer++ = c;
|
86 |
|
|
++nChars;
|
87 |
|
|
}
|
88 |
|
|
|
89 |
|
|
return nChars;
|
90 |
|
|
}
|
91 |
|
|
|
92 |
|
|
|
93 |
|
|
_STD_END
|