diff -r 6efc85c5493e -r 1c1e3599d66a doc/doxygen/html/param_8h-source.html --- a/doc/doxygen/html/param_8h-source.html Mon Feb 11 11:00:12 2008 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,96 +0,0 @@ - -
-00001 /* -00002 This file is part of CanFestival, a library implementing CanOpen Stack. -00003 -00004 Copyright (C): Edouard TISSERANT and Francis DUPIN -00005 -00006 See COPYING file for copyrights details. -00007 -00008 This library is free software; you can redistribute it and/or -00009 modify it under the terms of the GNU Lesser General Public -00010 License as published by the Free Software Foundation; either -00011 version 2.1 of the License, or (at your option) any later version. -00012 -00013 This library is distributed in the hope that it will be useful, -00014 but WITHOUT ANY WARRANTY; without even the implied warranty of -00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -00016 Lesser General Public License for more details. -00017 -00018 You should have received a copy of the GNU Lesser General Public -00019 License along with this library; if not, write to the Free Software -00020 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -00021 */ -00022 /* param.h - 32K Board specific parameters -00023 Copyright (C) 2002 Free Software Foundation, Inc. -00024 Written by Stephane Carrez (stcarrez@worldnet.fr) -00025 -00026 This file is free software; you can redistribute it and/or modify it -00027 under the terms of the GNU General Public License as published by the -00028 Free Software Foundation; either version 2, or (at your option) any -00029 later version. -00030 -00031 In addition to the permissions in the GNU General Public License, the -00032 Free Software Foundation gives you unlimited permission to link the -00033 compiled version of this file with other programs, and to distribute -00034 those programs without any restriction coming from the use of this -00035 file. (The General Public License restrictions do apply in other -00036 respects; for example, they cover modification of the file, and -00037 distribution when not linked into another program.) -00038 -00039 This file is distributed in the hope that it will be useful, but -00040 WITHOUT ANY WARRANTY; without even the implied warranty of -00041 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -00042 General Public License for more details. -00043 -00044 You should have received a copy of the GNU General Public License -00045 along with this program; see the file COPYING. If not, write to -00046 the Free Software Foundation, 59 Temple Place - Suite 330, -00047 Boston, MA 02111-1307, USA. */ -00048 -00049 #ifndef _M68HC11_ARCH_32K_PARAM_H -00050 #define _M68HC11_ARCH_32K_PARAM_H -00051 -00052 /* Generic 32K board. */ -00053 #define M6811_ARCH_32K -00054 -00055 #undef M6811_DEF_BAUD -00056 #define M6811_DEF_BAUD 0x30 /* 9600 baud. */ -00057 -00058 #undef RAM_SIZE -00059 #define RAM_SIZE 32768 /* 32Kb of memory. */ -00060 -00061 #undef ROM_SIZE -00062 #define ROM_SIZE 32768 /* 32Kb of rom. */ -00063 -00064 #undef DATA_SIZE -00065 #define DATA_SIZE (0x8000-0x1040) /* Data section size. */ -00066 -00067 #undef TEXT_SIZE -00068 #define TEXT_SIZE ROM_SIZE /* Text section size. */ -00069 -00070 #endif -