COSA
An Object-Oriented Platform for Arduino Programming
sample_request_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 pins_name 0
26 #define period_name 0
27 #else
28 static const char descr_name[] __PROGMEM = "Ciao::Fai::sample_request_t";
29 static const char pins_name[] __PROGMEM = "pins";
30 static const char period_name[] __PROGMEM = "period";
31 #endif
32 static const Ciao::Descriptor::member_t descr_members[] __PROGMEM = {
33  {
35  1,
36  pins_name,
37  0
38  },
39  {
41  1,
42  period_name,
43  0
44  }
45 };
48  descr_name,
49  descr_members,
50  membersof(descr_members)
51 };
52 
static const char descr_name[] __PROGMEM
static const Ciao::Descriptor::user_t sample_request_t
Definition: Fai.hh:53
#define membersof(x)
Definition: Types.h:165