mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-05 11:26:25 +02:00
Minor changes
This commit is contained in:
parent
76f13c34f3
commit
5d7436ba49
4 changed files with 7 additions and 6 deletions
|
@ -19,7 +19,7 @@ LOGGERS_DIR=/tmp/ina260_logs/
|
|||
# LOGGERS_DELAY defines the delay between 2 consecutive
|
||||
# ina260 power read performed by the logger
|
||||
# Unit is milliseconds
|
||||
LOGGERS_DELAY=0
|
||||
LOGGERS_DELAY=1000
|
||||
# SUBSCRIBER_DIR will contain all the measurments
|
||||
# received from the publishers
|
||||
SUBSCRIBER_DIR=./data
|
||||
|
|
|
@ -114,14 +114,14 @@ int main (int argc, char *argv [])
|
|||
fgets(buffer,STATIC_LEN,regptr);
|
||||
// Get power measurement timestamp:
|
||||
clock_gettime(CLOCK_REALTIME,&power_ts);
|
||||
char line[STATIC_LEN];
|
||||
char line[MAX_RECORD_LEN];
|
||||
sprintf(line,"%ld,%ld,%d\n",power_ts.tv_sec,power_ts.tv_nsec,atoi(buffer));
|
||||
int linelen=strlen(line);
|
||||
if((queues[queue_id].size+linelen)>ZMQ_MSG_SIZE){
|
||||
if((queues[queue_id].size+MAX_RECORD_LEN)>ZMQ_MSG_SIZE){
|
||||
printf("To many measurements to publish. Please increase ZMQ_MSG_SIZE\n");
|
||||
} else {
|
||||
memcpy(queues[queue_id].msg+queues[queue_id].size,line,linelen);
|
||||
queues[queue_id].size+=linelen;
|
||||
sprintf(queues[queue_id].msg+queues[queue_id].size,"%ld,%ld,%d\n",power_ts.tv_sec,power_ts.tv_nsec,atoi(buffer));
|
||||
queues[queue_id].size+=strlen(queues[queue_id].msg+queues[queue_id].size);
|
||||
}
|
||||
// Reset power register file:
|
||||
fseek(regptr,0,SEEK_SET);
|
||||
|
|
|
@ -79,7 +79,7 @@ int main (int argc, char *argv [])
|
|||
// Write all the measurements:
|
||||
if(line>4){
|
||||
fwrite(token, strlen(token), 1, fptr);
|
||||
//printf("%s\n",token);
|
||||
printf("%s\n",token);
|
||||
fwrite("\n",1,1,fptr);
|
||||
}
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#define INA260_SYSFS "/sys/kernel/ina260"
|
||||
#define INA260_POWER_REGISTER "registers/power"
|
||||
#define STATIC_LEN 255
|
||||
#define MAX_RECORD_LEN 100
|
||||
#define MAX_QUEUES 1
|
||||
|
||||
#ifndef ZMQ_TOKEN
|
||||
|
|
Loading…
Add table
Reference in a new issue