/* Copyright (c) 2011 Arduino. All right reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** * \file syscalls_sam3.c * * Implementation of newlib syscall. * */ /*---------------------------------------------------------------------------- * Headers *----------------------------------------------------------------------------*/ #include "syscalls.h" // Helper macro to mark unused parameters and prevent compiler warnings. // Appends _UNUSED to the variable name to prevent accidentally using them. #ifdef __GNUC__ # define UNUSED(x) x ## _UNUSED __attribute__((__unused__)) #else # define UNUSED(x) x ## _UNUSED #endif /*---------------------------------------------------------------------------- * Exported variables *----------------------------------------------------------------------------*/ #undef errno extern int errno ; extern int _end ; /*---------------------------------------------------------------------------- * Exported functions *----------------------------------------------------------------------------*/ extern void _exit( int status ) ; extern void _kill( int pid, int sig ) ; extern int _getpid ( void ) ; extern caddr_t _sbrk ( int incr ) { static unsigned char *heap = NULL ; unsigned char *prev_heap ; if ( heap == NULL ) { heap = (unsigned char *)&_end ; } prev_heap = heap; heap += incr ; return (caddr_t) prev_heap ; } extern int link( UNUSED(char *cOld), UNUSED(char *cNew) ) { return -1 ; } extern int _close( UNUSED(int file) ) { return -1 ; } extern int _fstat( UNUSED(int file), struct stat *st ) { st->st_mode = S_IFCHR ; return 0 ; } extern int _isatty( UNUSED(int file) ) { return 1 ; } extern int _lseek( UNUSED(int file), UNUSED(int ptr), UNUSED(int dir) ) { return 0 ; } extern int _read(UNUSED(int file), UNUSED(char *ptr), UNUSED(int len) ) { return 0 ; } extern int _write( UNUSED(int file), char *ptr, int len ) { // int iIndex ; // // // // for ( ; *ptr != 0 ; ptr++ ) // for ( iIndex=0 ; iIndex < len ; iIndex++, ptr++ ) // { // // UART_PutChar( *ptr ) ; // // // Check if the transmitter is ready // while ((UART->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) // ; // // // Send character // UART->UART_THR = *ptr; // } // // return iIndex ; return 0; } extern void _exit( int status ) { // printf( "Exiting with status %d.\n", status ) ; for ( ; ; ) ; } extern void _kill( UNUSED(int pid), UNUSED(int sig) ) { return ; } extern int _getpid ( void ) { return -1 ; } void __cxa_pure_virtual (void) { // panic (kPanic_cxa_pure_virtual) ; }