C Programming -> delay action
I'm not really familar with c code, so I have some problems to get a given code customized. It is a shutdown button code for a raspberry pi. GPIO has high as long as nobody presses the button. Everthing worked fine until I added an USV. Since I have connected it, the level of the GPIO fall down from time to time, only a very short time. So I tried to set a delay for the shutdown action, but it doesn't work in severals ways I have tried.
This is the relevant part of the script; it is not working anymore. The pressed button is not recognised anymore.
while(1) {
memset(rdbuf, 0x00, RDBUF_LEN);
lseek(fd, 0, SEEK_SET);
ret=poll(&pfd, 1, POLL_TIMEOUT);
if(ret<0) {
logging(LOG_CRIT,"error polling interrupt - exiting");
close(fd);
exit(EXIT_FAILURE);
}
if(ret==0) {
continue;
}
ret=read(fd, rdbuf, RDBUF_LEN-1);
/*Errorhandling*/
if(ret<0) {
logging(LOG_CRIT,"error reading gpio - exiting");
exit(EXIT_FAILURE);
} else {
if (ret==0) {
logging(LOG_INFO,"Got interrupt from shutdown key. Checking delay");
if ( delay == 9 ) {
logging(LOG_INFO,"got interrupts from shutdown key, shutting down now");
system("shutdown -h now");
exit(0);
} else {
/* oss << "got interrupt from shutdown key*/
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Got interrupt from shutdown key, Counter not 10 (%i). Shutdown delayed...", delay);
logging(LOG_INFO,buffer);
delay++;
}
} else {
logging(LOG_INFO,"No interrupts from shutdown key. Checking Delay.");
if ( delay >= 1 ) {
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Counter: %i Signal unterbrochen. Setze Counter zurück.", delay);
logging(LOG_INFO,buffer);
delay = 0;
}
}
}
}
What is the difference between poll and read?
My idea is that delay counts up as long as GPIO is pressed (0) if it is 9 (or anything that will be about one second in runtime) the script should shut down the raspi. If the button is no longer pressed, delay must set back to zero. This is what never worked. I managed to delay the shutdown, but delay was counting up over days.
Thanks for your help.
raspbian
migrated from serverfault.com Nov 22 '18 at 8:53
This question came from our site for system and network administrators.
add a comment |
I'm not really familar with c code, so I have some problems to get a given code customized. It is a shutdown button code for a raspberry pi. GPIO has high as long as nobody presses the button. Everthing worked fine until I added an USV. Since I have connected it, the level of the GPIO fall down from time to time, only a very short time. So I tried to set a delay for the shutdown action, but it doesn't work in severals ways I have tried.
This is the relevant part of the script; it is not working anymore. The pressed button is not recognised anymore.
while(1) {
memset(rdbuf, 0x00, RDBUF_LEN);
lseek(fd, 0, SEEK_SET);
ret=poll(&pfd, 1, POLL_TIMEOUT);
if(ret<0) {
logging(LOG_CRIT,"error polling interrupt - exiting");
close(fd);
exit(EXIT_FAILURE);
}
if(ret==0) {
continue;
}
ret=read(fd, rdbuf, RDBUF_LEN-1);
/*Errorhandling*/
if(ret<0) {
logging(LOG_CRIT,"error reading gpio - exiting");
exit(EXIT_FAILURE);
} else {
if (ret==0) {
logging(LOG_INFO,"Got interrupt from shutdown key. Checking delay");
if ( delay == 9 ) {
logging(LOG_INFO,"got interrupts from shutdown key, shutting down now");
system("shutdown -h now");
exit(0);
} else {
/* oss << "got interrupt from shutdown key*/
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Got interrupt from shutdown key, Counter not 10 (%i). Shutdown delayed...", delay);
logging(LOG_INFO,buffer);
delay++;
}
} else {
logging(LOG_INFO,"No interrupts from shutdown key. Checking Delay.");
if ( delay >= 1 ) {
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Counter: %i Signal unterbrochen. Setze Counter zurück.", delay);
logging(LOG_INFO,buffer);
delay = 0;
}
}
}
}
What is the difference between poll and read?
My idea is that delay counts up as long as GPIO is pressed (0) if it is 9 (or anything that will be about one second in runtime) the script should shut down the raspi. If the button is no longer pressed, delay must set back to zero. This is what never worked. I managed to delay the shutdown, but delay was counting up over days.
Thanks for your help.
raspbian
migrated from serverfault.com Nov 22 '18 at 8:53
This question came from our site for system and network administrators.
add a comment |
I'm not really familar with c code, so I have some problems to get a given code customized. It is a shutdown button code for a raspberry pi. GPIO has high as long as nobody presses the button. Everthing worked fine until I added an USV. Since I have connected it, the level of the GPIO fall down from time to time, only a very short time. So I tried to set a delay for the shutdown action, but it doesn't work in severals ways I have tried.
This is the relevant part of the script; it is not working anymore. The pressed button is not recognised anymore.
while(1) {
memset(rdbuf, 0x00, RDBUF_LEN);
lseek(fd, 0, SEEK_SET);
ret=poll(&pfd, 1, POLL_TIMEOUT);
if(ret<0) {
logging(LOG_CRIT,"error polling interrupt - exiting");
close(fd);
exit(EXIT_FAILURE);
}
if(ret==0) {
continue;
}
ret=read(fd, rdbuf, RDBUF_LEN-1);
/*Errorhandling*/
if(ret<0) {
logging(LOG_CRIT,"error reading gpio - exiting");
exit(EXIT_FAILURE);
} else {
if (ret==0) {
logging(LOG_INFO,"Got interrupt from shutdown key. Checking delay");
if ( delay == 9 ) {
logging(LOG_INFO,"got interrupts from shutdown key, shutting down now");
system("shutdown -h now");
exit(0);
} else {
/* oss << "got interrupt from shutdown key*/
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Got interrupt from shutdown key, Counter not 10 (%i). Shutdown delayed...", delay);
logging(LOG_INFO,buffer);
delay++;
}
} else {
logging(LOG_INFO,"No interrupts from shutdown key. Checking Delay.");
if ( delay >= 1 ) {
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Counter: %i Signal unterbrochen. Setze Counter zurück.", delay);
logging(LOG_INFO,buffer);
delay = 0;
}
}
}
}
What is the difference between poll and read?
My idea is that delay counts up as long as GPIO is pressed (0) if it is 9 (or anything that will be about one second in runtime) the script should shut down the raspi. If the button is no longer pressed, delay must set back to zero. This is what never worked. I managed to delay the shutdown, but delay was counting up over days.
Thanks for your help.
raspbian
I'm not really familar with c code, so I have some problems to get a given code customized. It is a shutdown button code for a raspberry pi. GPIO has high as long as nobody presses the button. Everthing worked fine until I added an USV. Since I have connected it, the level of the GPIO fall down from time to time, only a very short time. So I tried to set a delay for the shutdown action, but it doesn't work in severals ways I have tried.
This is the relevant part of the script; it is not working anymore. The pressed button is not recognised anymore.
while(1) {
memset(rdbuf, 0x00, RDBUF_LEN);
lseek(fd, 0, SEEK_SET);
ret=poll(&pfd, 1, POLL_TIMEOUT);
if(ret<0) {
logging(LOG_CRIT,"error polling interrupt - exiting");
close(fd);
exit(EXIT_FAILURE);
}
if(ret==0) {
continue;
}
ret=read(fd, rdbuf, RDBUF_LEN-1);
/*Errorhandling*/
if(ret<0) {
logging(LOG_CRIT,"error reading gpio - exiting");
exit(EXIT_FAILURE);
} else {
if (ret==0) {
logging(LOG_INFO,"Got interrupt from shutdown key. Checking delay");
if ( delay == 9 ) {
logging(LOG_INFO,"got interrupts from shutdown key, shutting down now");
system("shutdown -h now");
exit(0);
} else {
/* oss << "got interrupt from shutdown key*/
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Got interrupt from shutdown key, Counter not 10 (%i). Shutdown delayed...", delay);
logging(LOG_INFO,buffer);
delay++;
}
} else {
logging(LOG_INFO,"No interrupts from shutdown key. Checking Delay.");
if ( delay >= 1 ) {
char buffer[1024];
snprintf(buffer, sizeof(buffer), "Counter: %i Signal unterbrochen. Setze Counter zurück.", delay);
logging(LOG_INFO,buffer);
delay = 0;
}
}
}
}
What is the difference between poll and read?
My idea is that delay counts up as long as GPIO is pressed (0) if it is 9 (or anything that will be about one second in runtime) the script should shut down the raspi. If the button is no longer pressed, delay must set back to zero. This is what never worked. I managed to delay the shutdown, but delay was counting up over days.
Thanks for your help.
raspbian
raspbian
asked Nov 22 '18 at 8:42
Dirk SchnickDirk Schnick
85
85
migrated from serverfault.com Nov 22 '18 at 8:53
This question came from our site for system and network administrators.
migrated from serverfault.com Nov 22 '18 at 8:53
This question came from our site for system and network administrators.
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53427060%2fc-programming-delay-action%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53427060%2fc-programming-delay-action%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown