diff options
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | src/main.c | 6 |
2 files changed, 6 insertions, 3 deletions
@@ -12,6 +12,9 @@ armhf: x86: $(CC) $(CFLAGS) src/hmc5883.c src/hih61xx.c src/lm75.c src/main.c -o build/i2sensors +geode: + $(CC) $(CFLAGS) -m32 -mtune=geode -march=geode src/hmc5883.c src/hih61xx.c src/lm75.c src/main.c -o build/i2sensors + copy: scp -r build/i2sensors-armhf root@cb2:/tmp/i2sensors # rsync -aHv -q -e "ssh" build/i2sensors-arm root@cb2:/tmp/i2sensors @@ -18,7 +18,7 @@ #include "hih61xx.h" #include "hmc5883.h" -#define VERSION 1.22 +#define VERSION 1.24 // extern void lm75_print_help(void); // extern void lm75_read_all(const char *opts); @@ -66,8 +66,8 @@ void bus_err(int ern){ uchar *xchg_data (uchar *buf, uint16 wrlen, uint16 waitlen, uint16 rdlen){ //# [buf] = 32 byte - if(write(devicef, buf, wrlen) != wrlen){ //# write one byte to device - perror("I2C communication(wr) error."); + if(write(devicef, buf, 1) != 1){ //# write one byte to device + perror("I2C communication(wrr) error."); printf("errno: %d\n",errno); } usleep(waitlen*1000); //# Wait 10ms for reading |