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
10dc03b39c
commit
1e8c15ca87
1 changed files with 14 additions and 1 deletions
|
@ -19,6 +19,9 @@
|
|||
unsigned char __stop = 0;
|
||||
unsigned char __stop_zmq_thread = 0;
|
||||
|
||||
/// @brief Path of the break file (if found, publisher will stop publishing)
|
||||
char __break_file[STATIC_LEN];
|
||||
|
||||
/**
|
||||
* @brief Stop process properly on SIGINT
|
||||
*
|
||||
|
@ -33,6 +36,10 @@ void sighandler(int signo) {
|
|||
|
||||
void *publisher(void *zmq_publisher);
|
||||
|
||||
void askforbreak(){
|
||||
|
||||
}
|
||||
|
||||
typedef struct queue {
|
||||
int size;
|
||||
char issending;
|
||||
|
@ -62,6 +69,12 @@ int main(int argc, char *argv[]) {
|
|||
strcat(regpower, "/");
|
||||
strcat(regpower, INA260_POWER_OUTPUT);
|
||||
|
||||
// __break_file
|
||||
strcat(__break_file, "/publisher_");
|
||||
strcat(__break_file, key);
|
||||
strcat(__break_file, "_break");
|
||||
printf("%s\n",__break_file);
|
||||
|
||||
//----- Sanity checks
|
||||
signal(SIGINT, sighandler);
|
||||
if (loginterval < MIN_INTERVAL) {
|
||||
|
@ -175,4 +188,4 @@ void *publisher(void *zmq_publisher) {
|
|||
queue_id = 0;
|
||||
}
|
||||
pthread_exit(EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue