diff options
author | Siddhesh Wani | 2017-06-20 14:50:21 +0530 |
---|---|---|
committer | GitHub | 2017-06-20 14:50:21 +0530 |
commit | 2859e00d3f1da2d4b5b47514161bf0c63fcef83f (patch) | |
tree | 42fc74d21d1506f2e69359f4083e2d17b4328394 /2.3-1/src/c/scilab-arduino/interfaces/int_cmd_i2c_dev.h | |
parent | 02a004ea1500c403ac1a18a52aaf79aaeb7280ed (diff) | |
parent | 3121a1f5a8203bfd14d46f71930ac5cd22afdf7d (diff) | |
download | Scilab2C-2859e00d3f1da2d4b5b47514161bf0c63fcef83f.tar.gz Scilab2C-2859e00d3f1da2d4b5b47514161bf0c63fcef83f.tar.bz2 Scilab2C-2859e00d3f1da2d4b5b47514161bf0c63fcef83f.zip |
Merge pull request #6 from yash1112/master
Merged with Yash's work. GUI updated for selecting Arduino boards. More functions for Arduino added.
Diffstat (limited to '2.3-1/src/c/scilab-arduino/interfaces/int_cmd_i2c_dev.h')
-rw-r--r-- | 2.3-1/src/c/scilab-arduino/interfaces/int_cmd_i2c_dev.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_i2c_dev.h b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_i2c_dev.h new file mode 100644 index 00000000..c4d93d74 --- /dev/null +++ b/2.3-1/src/c/scilab-arduino/interfaces/int_cmd_i2c_dev.h @@ -0,0 +1,17 @@ +#ifndef __INT_CMD_I2C_DEV_H__ +#define __INT_CMD_I2C_DEV_H__ + +#include "types.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#define d0cmd_i2c_devu80(in1) u8cmd_i2c_devs((uint8)in1) + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* __INT_CMD_I2C_DEV_H__ */ |