COSA
An Object-Oriented Platform for Arduino Programming
event_t.cpp
Go to the documentation of this file.
1 
21 #include "Fai.hh"
22 
23 #if defined(NREFLECTION)
24 #define descr_name 0
25 #define type_name 0
26 #define target_name 0
27 #define value_name 0
28 #else
29 static const char descr_name[] __PROGMEM = "Cosa::Event";
30 static const char type_name[] __PROGMEM = "type";
31 static const char target_name[] __PROGMEM = "target";
32 static const char value_name[] __PROGMEM = "value";
33 #endif
34 static const Ciao::Descriptor::member_t descr_members[] __PROGMEM = {
35  {
37  1,
38  type_name,
39  0
40  },
41  {
43  1,
44  target_name,
45  0
46  },
47  {
49  1,
50  value_name,
51  0
52  }
53 };
56  descr_name,
57  descr_members,
58  membersof(descr_members)
59 };
60 
static const Ciao::Descriptor::user_t event_t
Definition: Fai.hh:52
#define membersof(x)
Definition: Types.h:165
static const char descr_name[] __PROGMEM
Definition: event_t.cpp:29