iContext.h
1 /*
2  * @file iContext.h
3  */
4 
5 #pragma once
6 
7 #include <string>
8 
9 namespace dpyContext {
10 
14 struct ContextConf {
15  std::string memorytype;
17  int deviceno;
18  int deviceaddr;
19  std::string gpio;
21 };
22 
23 }
24 
int deviceaddr
Context device addr.
Definition: iContext.h:18
bool gpio_activelow
True if Gpio active when low.
Definition: iContext.h:20
std::string gpio
Gpio number.
Definition: iContext.h:19
Context configuration structure.
Definition: iContext.h:14
std::string memorytype
Context memory device type.
Definition: iContext.h:15
Deepsy SERVICE_NAME namespace that includes the different enums, structs or method signatures that sh...
Definition: contextApi.h:15
int contextsize
Context memory size.
Definition: iContext.h:16
int deviceno
Context device number.
Definition: iContext.h:17