code
stringlengths
2
2.01M
language
stringclasses
1 value
#include <aversive.h> #include <aversive/wait.h> #include <uart.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #include "i2cm.h" #include "compass.h" #include "comm_fpga.h" #include <avr/sfr_defs.h> // int main(void) { // Turn interruptions ON sei(); // Initialize UART uart_init(); fdevopen(...
C
/* * Copyright Droids Corporation, Microb Technology, Eirbot (2005) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) a...
C
/* * Copyright RobOtter (2008) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is d...
C
#ifndef GP2PACK_CONFIG_H #define GP2PACK_CONFIG_H #define GP2PACK_MEAN_VALUES 10 #endif/*GP2PACK_CONFIG_H*/
C
/* * Copyright Droids Corporation, Microb Technology, Eirbot (2005) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any lat...
C
/* * Copyright RobOtter (2008) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is d...
C
#include <aversive.h> #include <aversive/wait.h> #include <uart.h> #include <adc.h> #include "gp2pack.h" int main(void) { gp2pack gp2p_right; // Turn interruptions ON sei(); // Initialize UART uart_init(); fdevopen(uart0_dev_send,uart0_dev_recv); // bla printf("\n\nRobotter 2008 - 102chute - MECA ...
C
/* * Copyright RobOtter (2008) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is d...
C
/* * Copyright Droids Corporation, Microb Technology, Eirbot (2005) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) a...
C
#ifndef _ADC_CONFIG_H_ #define _ADC_CONFIG_H_ /* Uncomment the ADC inputs you want to use */ #define ADC0_USE #define ADC1_USE #define ADC2_USE #define ADC3_USE #define ADC4_USE #define ADC5_USE #define ADC6_USE #define ADC7_USE /* Uncomment the ADC reference you want to use */ /*#define ADC_REF_EXT */ /* #define ADC...
C
/* $Id: natpmpc.c,v 1.6 2008/07/02 22:33:06 nanard Exp $ */ /* libnatpmp * Copyright (c) 2007-2008, Thomas BERNARD <miniupnp@free.fr> * http://miniupnp.free.fr/libnatpmp.html * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that ...
C
#ifdef WIN32 #include <sys/time.h> typedef struct _FILETIME { unsigned long dwLowDateTime; unsigned long dwHighDateTime; } FILETIME; void __stdcall GetSystemTimeAsFileTime(FILETIME*); //void gettimeofday(struct timeval* p, void* tz /* IGNORED */); void gettimeofday(struct timeval* p, void* tz /* IGNORED *...
C
/* $Id: natpmp.c,v 1.8 2008/07/02 22:33:06 nanard Exp $ */ /* libnatpmp * Copyright (c) 2007-2008, Thomas BERNARD <miniupnp@free.fr> * http://miniupnp.free.fr/libnatpmp.html * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that t...
C
/* $Id: getgateway.h,v 1.3 2008/07/02 22:33:06 nanard Exp $ */ /* libnatpmp * Copyright (c) 2007, Thomas BERNARD <miniupnp@free.fr> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permi...
C
/* $Id: testgetgateway.c,v 1.4 2008/07/02 22:33:06 nanard Exp $ */ /* libnatpmp * Copyright (c) 2007, Thomas BERNARD <miniupnp@free.fr> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this p...
C
/* $Id: natpmp.h,v 1.10 2008/07/02 22:33:06 nanard Exp $ */ /* libnatpmp * Copyright (c) 2007-2008, Thomas BERNARD <miniupnp@free.fr> * http://miniupnp.free.fr/libnatpmp.html * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that ...
C
#ifndef __DECLSPEC_H__ #define __DECLSPEC_H__ #if defined(WIN32) && !defined(STATICLIB) #ifdef NATPMP_EXPORTS #define LIBSPEC __declspec(dllexport) #else #define LIBSPEC __declspec(dllimport) #endif #else #define LIBSPEC #endif #endif
C
/* $Id: getgateway.c,v 1.12 2008/10/06 10:04:16 nanard Exp $ */ /* libnatpmp * Copyright (c) 2007-2008, Thomas BERNARD <miniupnp@free.fr> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this...
C
/* $Id: upnperrors.h,v 1.2 2008/07/02 23:31:15 nanard Exp $ */ /* (c) 2007 Thomas Bernard * All rights reserved. * MiniUPnP Project. * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * This software is subjet to the conditions detailed in the * provided LICENCE file. */ #ifndef __UPNPERRORS_H__ #define ...
C
/* $Id: codelength.h,v 1.1 2008/10/06 22:04:06 nanard Exp $ */ /* Project : miniupnp * Author : Thomas BERNARD * copyright (c) 2005-2008 Thomas Bernard * This software is subjet to the conditions detailed in the * provided LICENCE file. */ #ifndef __CODELENGTH_H__ #define __CODELENGTH_H__ /* Encode length by using...
C
/* $Id: igd_desc_parse.c,v 1.8 2008/04/23 11:51:06 nanard Exp $ */ /* Project : miniupnp * http://miniupnp.free.fr/ * Author : Thomas Bernard * Copyright (c) 2005-2008 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #include "igd_desc_...
C
/* $Id: upnpcommands.c,v 1.24 2009/04/17 21:21:19 nanard Exp $ */ /* Project : miniupnp * Author : Thomas Bernard * Copyright (c) 2005-2009 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #include <stdlib.h> #include <stdio.h> #include ...
C
/* $Id: igd_desc_parse.h,v 1.6 2008/04/23 11:51:07 nanard Exp $ */ /* Project : miniupnp * http://miniupnp.free.fr/ * Author : Thomas Bernard * Copyright (c) 2005-2008 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #ifndef __IGD_DESC_...
C
/* $Id: minisoap.h,v 1.3 2006/11/19 22:32:34 nanard Exp $ */ /* Project : miniupnp * Author : Thomas Bernard * Copyright (c) 2005 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. */ #ifndef __MINISOAP_H__ #define __MINISOAP_H__ /*int httpWrit...
C
/* $Id: miniupnpcstrings.h,v 1.3 2009/06/04 09:05:56 nanard Exp $ */ /* Project: miniupnp * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * Author: Thomas Bernard * Copyright (c) 2005-2009 Thomas Bernard * This software is subjects to the conditions detailed * in the LICENCE file provided within this ...
C
/* $Id: miniupnpc.h,v 1.18 2008/09/25 18:02:50 nanard Exp $ */ /* Project: miniupnp * http://miniupnp.free.fr/ * Author: Thomas Bernard * Copyright (c) 2005-2006 Thomas Bernard * This software is subjects to the conditions detailed * in the LICENCE file provided within this distribution */ #ifndef __MINIUPNPC_H__ ...
C
/* $Id: minixml.h,v 1.6 2006/11/30 11:47:21 nanard Exp $ */ /* minimal xml parser * * Project : miniupnp * Website : http://miniupnp.free.fr/ * Author : Thomas Bernard * Copyright (c) 2005 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. *...
C
/* $Id: testigddescparse.c,v 1.1 2008/04/23 11:53:45 nanard Exp $ */ /* Project : miniupnp * http://miniupnp.free.fr/ * Author : Thomas Bernard * Copyright (c) 2008 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #include <stdio.h> #in...
C
/* $Id: upnpreplyparse.c,v 1.10 2008/02/21 13:05:27 nanard Exp $ */ /* MiniUPnP project * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * (c) 2006 Thomas Bernard * This software is subject to the conditions detailed * in the LICENCE file provided within the distribution */ #include <stdlib.h> #includ...
C
/* $Id: minissdpc.h,v 1.1 2007/08/31 15:15:33 nanard Exp $ */ /* Project: miniupnp * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * Author: Thomas Bernard * Copyright (c) 2005-2007 Thomas Bernard * This software is subjects to the conditions detailed * in the LICENCE file provided within this distrib...
C
/* $Id: miniupnpcmodule.c,v 1.13 2009/04/17 20:59:42 nanard Exp $*/ /* Project : miniupnp * Author : Thomas BERNARD * website : http://miniupnp.tuxfamily.org/ * copyright (c) 2007 Thomas Bernard * This software is subjet to the conditions detailed in the * provided LICENCE file. */ #include <Python.h> #define STAT...
C
/* $Id: upnperrors.c,v 1.3 2008/04/27 17:21:51 nanard Exp $ */ /* Project : miniupnp * Author : Thomas BERNARD * copyright (c) 2007 Thomas Bernard * All Right reserved. * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * This software is subjet to the conditions detailed in the * provided LICENCE file....
C
/* $Id: upnpcommands.h,v 1.17 2009/04/17 21:21:19 nanard Exp $ */ /* Miniupnp project : http://miniupnp.free.fr/ * Author : Thomas Bernard * Copyright (c) 2005-2008 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided within this distribution */ #ifndef __UPNPCOMMANDS_...
C
/* $Id: upnpc.c,v 1.65 2008/10/14 18:05:27 nanard Exp $ */ /* Project : miniupnp * Author : Thomas Bernard * Copyright (c) 2005-2008 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #include <stdio.h> #include <stdlib.h> #include <string...
C
/* $Id: testupnpreplyparse.c,v 1.2 2008/02/21 13:05:27 nanard Exp $ */ /* MiniUPnP project * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * (c) 2006-2007 Thomas Bernard * This software is subject to the conditions detailed * in the LICENCE file provided within the distribution */ #include <stdio.h> #i...
C
/* $OpenBSD: queue.h,v 1.31 2005/11/25 08:06:25 otto Exp $ */ /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ /* * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, ar...
C
#ifndef __DECLSPEC_H__ #define __DECLSPEC_H__ #if defined(WIN32) && !defined(STATICLIB) #ifdef MINIUPNP_EXPORTS #define LIBSPEC __declspec(dllexport) #else #define LIBSPEC __declspec(dllimport) #endif #else #define LIBSPEC #endif #endif
C
/* $Id: miniwget.c,v 1.22 2009/02/28 10:36:35 nanard Exp $ */ /* Project : miniupnp * Author : Thomas Bernard * Copyright (c) 2005 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #include <stdio.h> #include <stdlib.h> #include <string.h...
C
/* $Id: minixml.c,v 1.6 2007/05/15 18:14:08 nanard Exp $ */ /* minixml.c : the minimum size a xml parser can be ! */ /* Project : miniupnp * webpage: http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * Author : Thomas Bernard Copyright (c) 2005-2007, Thomas BERNARD All rights reserved. Redistribution and ...
C
/* $Id: upnpreplyparse.h,v 1.8 2008/02/21 13:05:27 nanard Exp $ */ /* MiniUPnP project * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * (c) 2006 Thomas Bernard * This software is subject to the conditions detailed * in the LICENCE file provided within the distribution */ #ifndef __UPNPREPLYPARSE_H__...
C
/* $Id: minissdpc.c,v 1.7 2008/12/18 17:45:48 nanard Exp $ */ /* Project : miniupnp * Author : Thomas BERNARD * copyright (c) 2005-2008 Thomas Bernard * This software is subjet to the conditions detailed in the * provided LICENCE file. */ /*#include <syslog.h>*/ #include <stdio.h> #include <string.h> #include <stdl...
C
/* $Id: minisoap.c,v 1.16 2008/10/11 16:39:29 nanard Exp $ */ /* Project : miniupnp * Author : Thomas Bernard * Copyright (c) 2005 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * * Minimal SOAP implementation for UPnP protocol. */ #inclu...
C
/* $Id: miniupnpc.c,v 1.57 2008/12/18 17:46:36 nanard Exp $ */ /* Project : miniupnp * Author : Thomas BERNARD * copyright (c) 2005-2007 Thomas Bernard * This software is subjet to the conditions detailed in the * provided LICENCE file. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef WIN32 /* W...
C
/* $Id: minixmlvalid.c,v 1.2 2006/11/30 11:31:55 nanard Exp $ */ /* MiniUPnP Project * http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/ * minixmlvalid.c : * validation program for the minixml parser * * (c) 2006 Thomas Bernard */ #include <stdlib.h> #include <stdio.h> #include <string.h> #include "minix...
C
/* $Id: miniwget.h,v 1.5 2007/01/29 20:27:23 nanard Exp $ */ /* Project : miniupnp * Author : Thomas Bernard * Copyright (c) 2005 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #ifndef __MINIWGET_H__ #define __MINIWGET_H__ #include "d...
C
/* $Id: testminixml.c,v 1.6 2006/11/19 22:32:35 nanard Exp $ * testminixml.c * test program for the "minixml" functions. * Author : Thomas Bernard. */ #include <stdlib.h> #include <stdio.h> #include <string.h> #include "minixml.h" #include "igd_desc_parse.h" #ifdef WIN32 #define NO_BZERO #endif #ifdef NO_BZERO #d...
C
#include "Python.h" #include "structmember.h" #if PY_VERSION_HEX < 0x02060000 && !defined(Py_TYPE) #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) #endif #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) typedef int Py_ssize_t; #define PY_SSIZE_T_MAX INT_MAX #define PY_SSIZE_T_MIN INT_MIN #define PyInt_F...
C
/* * Copyright 2010 Facebook * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in w...
C
// // The following is for XMPPStream, // and any classes that extend XMPPStream such as XMPPFacebookStream. // // Define the various timeouts (in seconds) for retreiving various parts of the XML stream #define TIMEOUT_XMPP_WRITE -1 #define TIMEOUT_XMPP_READ_START 10 #define TIMEOUT_XMPP_READ_STREAM -1 ...
C
/* * This is a modified version of pdf_debug.c file which is part of MuPDF * by Artifex Software, Inc. */ #include "fitz.h" #include "mupdf.h" static void (*pdf_loghandler)(const char *s) = NULL; static int reinit_pdflog = 0; /* * Enable logging by setting environment variable MULOG to: * (a)ll or a combin...
C
#include "fitz.h" #include <libgen.h> #include "android/log.h" char fz_errorbuf[150*20] = {0}; static int fz_errorlen = 0; static int fz_errorclear = 1; static void fz_printerror(int type, const char *file, int line, const char *func, char *msg) { char buf[150]; int len; char *s; s = strrchr(file, '\\'); if (s...
C
#ifdef PDFVIEW2_H__ #error PDFVIEW2_H__ can be included only once #endif #define PDFVIEW2_H__ #include "fitz.h" #include "mupdf.h" /** * Holds pdf info. */ typedef struct { pdf_xref *xref; pdf_outline *outline; int fileno; /* used only when opening by file descriptor */ pdf_page **pages; /* lazy-load...
C
#include <string.h> #include <jni.h> #include "android/log.h" #include "pdfview2.h" #define PDFVIEW_LOG_TAG "cx.hell.android.pdfview" #define PDFVIEW_MAX_PAGES_LOADED 16 extern char fz_errorbuf[150*20]; /* defined in fitz/apv_base_error.c */ JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *jvm, void *reserved) { ...
C
/* config.h.in. Generated from configure.ac by autoheader. */ /* Define if building universal (internal helper macro) */ #undef AC_APPLE_UNIVERSAL_BUILD /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H /* Define if the local libc includes getopt_long() */ #define HAVE_GETOPT_LONG /* D...
C
/* * (C) Copyright 2007 Semihalf * * Written by: Rafal Jaworowski <raj@semihalf.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the ...
C
/* * (C) Copyright 2007 Semihalf * * Written by: Rafal Jaworowski <raj@semihalf.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the ...
C
/* * Copyright (c) 2011 The Chromium OS Authors. * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version ...
C
/* * (C) Copyright 2007 Semihalf * * Written by: Rafal Jaworowski <raj@semihalf.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the ...
C
/* * (C) Copyright 2007 Semihalf * * Written by: Rafal Jaworowski <raj@semihalf.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the ...
C
/* * (C) Copyright 2007-2008 Semihalf * * Written by: Rafal Jaworowski <raj@semihalf.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by...
C
/* * (C) Copyright 2007 Semihalf * * Written by: Rafal Jaworowski <raj@semihalf.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the ...
C
/* * (C) Copyright 2008 Semihalf * * (C) Copyright 2000-2009 * DENX Software Engineering * Wolfgang Denk, wd@denx.de * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 o...
C
/* * (C) Copyright 2001 * Murray Jensen <Murray.Jensen@cmst.csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Fo...
C
/* * (C) Copyright 2009 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * (C) Copyright 2008 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafulla@marvell.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free softw...
C
/* * (C) Copyright 2008 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafulla@marvell.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Pu...
C
/* * (C) Copyright 2000-2004 * DENX Software Engineering * Wolfgang Denk, wd@denx.de * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your opti...
C
/* * (C) Copyright 2007 * Heiko Schocher, DENX Software Engineering, <hs@denx.de> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free...
C
/* bin2header.c - program to convert binary file into a C structure * definition to be included in a header file. * * (C) Copyright 2008 by Harald Welte <laforge@openmoko.org> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it an...
C
/* * Copyright 2008 Extreme Engineering Solutions, Inc. * * mmap/munmap implementation derived from: * Clamav Native Windows Port : mmap win32 compatibility layer * Copyright (c) 2005-2006 Gianluigi Tiesi <sherpya@netfarm.it> * Parts by Kees Zeelenberg <kzlg@users.sourceforge.net> (LibGW32C) * * This program is...
C
#include "compiler.h" enum { MODE_GEN_INFO, MODE_GEN_DATA }; typedef struct bitmap_s { /* bitmap description */ uint16_t width; uint16_t height; uint8_t palette[256*3]; uint8_t *data; } bitmap_t; #define DEFAULT_CMAP_SIZE 16 /* size of default color map */ void usage(const char *prog) { fprintf(stderr, "Usa...
C
/* * (C) Copyright 2009 Marco Stornelli * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is di...
C
/************************************************************************* | COPYRIGHT (c) 2000 BY ABATRON AG |************************************************************************* | | PROJECT NAME: Linux Image to S-record Conversion Utility | FILENAME : img2srec.c | | COMPILER : GCC | | TARGET OS : LI...
C
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> int main (int argc, char *argv[]) { int s, len, o, port = 6666; char buf[512]; struct sockaddr_in addr; socklen_t addr_len = sizeof addr; if (argc > 1) port = atoi (argv[1]); s = socket (PF_INET, SOCK_D...
C
/* * (C) Copyright 2011 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fr...
C
/* ** Easylogo TGA->header converter ** ============================== ** (C) 2000 by Paolo Scaffardi (arsenio@tin.it) ** AIRVENT SAM s.p.a - RIMINI(ITALY) ** (C) 2007-2008 Mike Frysinger <vapier@gentoo.org> ** ** This is still under construction! */ #include <errno.h> #include <getopt.h> #include <stdbool.h> #include...
C
/* * (C) Copyright 2011 Free Electrons * David Wagner <david.wagner@free-electrons.com> * * Inspired from envcrc.c: * (C) Copyright 2001 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it * * See file CREDITS for list of people who contributed to this * project. * * This program is free sof...
C
/* * (C) Copyright 2008 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafulla@marvell.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Pu...
C
/* getline.c -- Replacement for GNU C library function getline Copyright (C) 1993, 1996, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of...
C
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
C
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
C
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
C
/* * taken from gdb/remote.c * * I am only interested in the write to memory stuff - everything else * has been ripped out * * all the copyright notices etc have been left in */ /* enough so that it will compile */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> /*nicked from gcc....
C
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
C
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
C
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
C
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
C
/* * linux/lib/string.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * stupid library routines.. The optimized versions should generally be found * as inline code in <asm-xx/string.h> * * These are buggy as well.. */ #include <linux/types.h> #include <linux/string.h> #include <malloc.h> #define __HA...
C
volatile int __dummy = 0xDEADBEEF;
C
/* * (C) Copyright 2001 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc. * * (C) Copyright 2002 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * mod...
C
/* * (C) Copyright 2000 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free S...
C
/* * (C) Copyright 2000-2006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the F...
C
/* * (C) Copyright 2000 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free S...
C
#include <common.h> #include <exports.h> extern unsigned long __dummy; void do_reset (void); void do_updater(void); void _main(void) { int i; printf("U-Boot Firmware Updater\n\n\n"); printf("****************************************************\n" "* ATTENTION!! PLEASE READ THIS NOTICE CAREFULLY! ...
C
#include <common.h> #include <asm/processor.h> #include <memio.h> #include <linux/ctype.h> static __inline__ unsigned long get_msr(void) { unsigned long msr; asm volatile("mfmsr %0" : "=r" (msr) :); return msr; } static __inline__ void set_msr(unsigned long msr) { asm volatile("mtmsr %0" : : "r" (msr)); } stati...
C
/* * (C) Copyright 2008 Semihalf * * (C) Copyright 2000-2004 * DENX Software Engineering * Wolfgang Denk, wd@denx.de * * Updated-by: Prafulla Wadaskar <prafulla@marvell.com> * FIT image specific code abstracted from mkimage.c * some functions added to address abstraction * * All rights reserved. * * This...
C
/* * (C) Copyright 2008 Semihalf * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distribut...
C
/* * (C) Copyright 2010 * Linaro LTD, www.linaro.org * Author: John Rigby <john.rigby@linaro.org> * Based on TI's signGP.c * * (C) Copyright 2009 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * (C) Copyright 2008 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafu...
C
/* * (C) Copyright 2001 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published ...
C
/* * Freescale i.MX28 image generator * * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> * on behalf of DENX Software Engineering GmbH * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the term...
C
/* * (C) Copyright 2010 * Linaro LTD, www.linaro.org * Author John Rigby <john.rigby@linaro.org> * Based on TI's signGP.c * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General ...
C