summaryrefslogtreecommitdiffstats
path: root/libk8055/k8055.h
diff options
context:
space:
mode:
Diffstat (limited to 'libk8055/k8055.h')
-rw-r--r--libk8055/k8055.h22
1 files changed, 13 insertions, 9 deletions
diff --git a/libk8055/k8055.h b/libk8055/k8055.h
index 121c757..b63f51f 100644
--- a/libk8055/k8055.h
+++ b/libk8055/k8055.h
@@ -19,6 +19,9 @@
http://opensource.org/licenses/
*/
+#ifndef K8055_H
+#define K8055_H 1
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -41,15 +44,15 @@ extern "C" {
int k8055_read( struct k8055_dev* dev );
int k8055_write( struct k8055_dev* dev );
- int k8055_digital_1( struct k8055_dev* dev ) { return ( ( dev->data_in[DIGITAL_INP_OFFSET] >> 4 ) & 0x01 ); }
- int k8055_digital_2( struct k8055_dev* dev ) { return ( ( dev->data_in[DIGITAL_INP_OFFSET] >> 5 ) & 0x01 ); }
- int k8055_digital_3( struct k8055_dev* dev ) { return ( ( dev->data_in[DIGITAL_INP_OFFSET] ) & 0x01 ); }
- int k8055_digital_4( struct k8055_dev* dev ) { return ( ( dev->data_in[DIGITAL_INP_OFFSET] >> 6 ) & 0x01 ); }
- int k8055_digital_5( struct k8055_dev* dev ) { return ( ( dev->data_in[DIGITAL_INP_OFFSET] >> 7 ) & 0x01 ); }
- int k8055_analog_1( struct k8055_dev* dev ) { return dev->data_in[ANALOG_1_OFFSET]; }
- int k8055_analog_2( struct k8055_dev* dev ) { return dev->data_in[ANALOG_2_OFFSET]; }
- int k8055_counter_1( struct k8055_dev* dev ) { return dev->data_in[COUNTER_1_OFFSET]; }
- int k8055_counter_2( struct k8055_dev* dev ) { return dev->data_in[COUNTER_2_OFFSET]; }
+ int k8055_digital_1( struct k8055_dev* dev );
+ int k8055_digital_2( struct k8055_dev* dev );
+ int k8055_digital_3( struct k8055_dev* dev );
+ int k8055_digital_4( struct k8055_dev* dev );
+ int k8055_digital_5( struct k8055_dev* dev );
+ int k8055_analog_1( struct k8055_dev* dev );
+ int k8055_analog_2( struct k8055_dev* dev );
+ int k8055_counter_1( struct k8055_dev* dev );
+ int k8055_counter_2( struct k8055_dev* dev );
char* k8055_version( void );
void k8055_set_debug_on( void );
@@ -116,3 +119,4 @@ extern "C" {
}
#endif
+#endif // K8055_H