Robot Simulator of the Robotics Group for Self-Organization of Control  0.8.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
avrtypes.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) 2005-2011 LpzRobots development team *
3  * Georg Martius <georg dot martius at web dot de> *
4  * Frank Guettler <guettler at informatik dot uni-leipzig dot de *
5  * Frank Hesse <frank at nld dot ds dot mpg dot de> *
6  * Ralf Der <ralfder at mis dot mpg dot de> *
7  * *
8  * This program is free software; you can redistribute it and/or modify *
9  * it under the terms of the GNU General Public License as published by *
10  * the Free Software Foundation; either version 2 of the License, or *
11  * (at your option) any later version. *
12  * *
13  * This program is distributed in the hope that it will be useful, *
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16  * GNU General Public License for more details. *
17  * *
18  * You should have received a copy of the GNU General Public License *
19  * along with this program; if not, write to the *
20  * Free Software Foundation, Inc., *
21  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22  * *
23  ***************************************************************************/
24 #ifndef __AVRTYPES_H
25 #define __AVRTYPES_H
26 
27 #ifndef AVR
28 
29  // USED IN CONFIGURABLE
30  const uint8_t maxNumberEntries = 5;
31  const uint8_t charLength = 8;
32 
33  typedef char charArray[maxNumberEntries];
34 
35  // CONFIGURABLE
37  typedef double paramval;
38 
39  struct parampair {
42  };
43 
45 
46  /// INSPECTABLE
49 
50  struct iparampair {
53  };
54 
56 
57 
60 
61 
62 
63 
64 
65 #endif
66 
67 #endif
iparamval * val
Definition: avrtypes.h:52
charArray paramkey
Definition: avrtypes.h:36
iparamkey iparamkeylist[maxNumberEntries]
Definition: avrtypes.h:58
const uint8_t maxNumberEntries
Definition: avrtypes.h:30
parampair plist[maxNumberEntries]
Definition: avrtypes.h:44
paramkey key
Definition: avrtypes.h:40
paramkey iparamkey
INSPECTABLE.
Definition: avrtypes.h:47
char charArray[maxNumberEntries]
Definition: avrtypes.h:33
iparamval * iparamvallisttrue[maxNumberEntries]
Definition: avrtypes.h:59
double paramval
Definition: avrtypes.h:37
iparampair iplist[maxNumberEntries]
Definition: avrtypes.h:55
paramval * val
Definition: avrtypes.h:41
iparamkey key
Definition: avrtypes.h:51
Definition: avrtypes.h:50
paramval iparamval
Definition: avrtypes.h:48
const uint8_t charLength
Definition: avrtypes.h:31
Definition: avrtypes.h:39