From 6bbb8b9e6639125b5539bd8d14e422a9c79c3f0a Mon Sep 17 00:00:00 2001 From: Gergő J. Miklós Date: Fri, 9 Oct 2020 02:39:29 +0200 Subject: Makefile --- Makefile | 3 +++ src/main.c | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0c9b0c1..c913718 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/src/main.c b/src/main.c index 09afe49..2920a2a 100644 --- a/src/main.c +++ b/src/main.c @@ -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 -- cgit v1.2.3