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
4224cb1d6c
commit
aedbeb3bc5
1 changed files with 10 additions and 12 deletions
|
@ -19,9 +19,6 @@
|
|||
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
|
||||
*
|
||||
|
@ -36,14 +33,14 @@ void sighandler(int signo) {
|
|||
|
||||
void *publisher(void *zmq_publisher);
|
||||
|
||||
void askforbreak(){
|
||||
void askforbreak(char *break_file){
|
||||
FILE * file;
|
||||
file = fopen(__break_file, "r");
|
||||
file = fopen(break_file, "r");
|
||||
while(file){
|
||||
printf("I am doing a break for %ds", BREAK_DURATION);
|
||||
usleep(BREAK_DURATION * 1000);
|
||||
fclose(file);
|
||||
file = fopen(__break_file, "r");
|
||||
file = fopen(break_file, "r");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -76,11 +73,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);
|
||||
// Path of the break file (if found, publisher will stop publishing)
|
||||
char break_file[STATIC_LEN];
|
||||
strcat(break_file, "publisher_");
|
||||
strcat(break_file, key);
|
||||
strcat(break_file, "_break");
|
||||
printf("Create to following file to stop publishing (max wakeup latency will be %ds): %s\n",BREAK_DURATION,break_file);
|
||||
|
||||
//----- Sanity checks
|
||||
signal(SIGINT, sighandler);
|
||||
|
@ -124,7 +122,7 @@ int main(int argc, char *argv[]) {
|
|||
printf("Logger started [client=%s,interval=%ds]\n", client, loginterval);
|
||||
while (!__stop) {
|
||||
// Check whether logging must be stopped
|
||||
askforbreak();
|
||||
askforbreak(break_file);
|
||||
// Busy wait:
|
||||
while (queues[queue_id].issending) {}
|
||||
// Get current interval
|
||||
|
|
Loading…
Add table
Reference in a new issue