2014-05-22 14:17:33 +01:00
|
|
|
/*
|
2018-01-24 15:09:29 +05:30
|
|
|
* Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
|
|
|
|
* Copyright (c) 2018 Linaro Ltd.
|
2014-05-22 14:17:33 +01:00
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
* the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2018-01-24 15:09:29 +05:30
|
|
|
*
|
|
|
|
|
* Example usage: Configures GPIO pin for interrupt and waits 30 seconds for the isr to trigger
|
|
|
|
|
*
|
2014-05-22 14:17:33 +01:00
|
|
|
*/
|
|
|
|
|
|
2018-01-24 15:09:29 +05:30
|
|
|
/* standard headers */
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <stdlib.h>
|
2017-11-17 17:22:34 +05:30
|
|
|
#include <unistd.h>
|
2014-05-22 14:17:33 +01:00
|
|
|
|
2018-01-24 15:09:29 +05:30
|
|
|
/* mraa headers */
|
|
|
|
|
#include "mraa/common.hpp"
|
|
|
|
|
#include "mraa/gpio.hpp"
|
2014-05-22 14:17:33 +01:00
|
|
|
|
2018-01-24 15:09:29 +05:30
|
|
|
#define GPIO_PIN 6
|
2014-05-22 14:17:33 +01:00
|
|
|
|
|
|
|
|
void
|
2018-01-24 15:09:29 +05:30
|
|
|
int_handler(void* args)
|
2014-05-22 14:17:33 +01:00
|
|
|
{
|
2018-01-24 15:09:29 +05:30
|
|
|
std::cout << "ISR triggered" << std::endl;
|
2014-05-22 14:17:33 +01:00
|
|
|
}
|
|
|
|
|
|
2015-03-23 14:39:12 +00:00
|
|
|
int
|
2018-01-24 15:09:29 +05:30
|
|
|
main(void)
|
2014-05-22 14:17:33 +01:00
|
|
|
{
|
2018-01-24 15:09:29 +05:30
|
|
|
mraa::Result status;
|
|
|
|
|
|
2015-03-23 14:39:12 +00:00
|
|
|
//! [Interesting]
|
2018-01-24 15:09:29 +05:30
|
|
|
/* initialize GPIO */
|
|
|
|
|
mraa::Gpio gpio(GPIO_PIN);
|
|
|
|
|
|
|
|
|
|
/* set GPIO to input */
|
|
|
|
|
status = gpio.dir(mraa::DIR_IN);
|
|
|
|
|
if (status != mraa::SUCCESS) {
|
|
|
|
|
printError(status);
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* configure ISR for GPIO */
|
|
|
|
|
status = gpio.isr(mraa::EDGE_BOTH, &int_handler, NULL);
|
|
|
|
|
if (status != mraa::SUCCESS) {
|
|
|
|
|
printError(status);
|
|
|
|
|
return EXIT_FAILURE;
|
2014-05-22 14:17:33 +01:00
|
|
|
}
|
2018-01-24 15:09:29 +05:30
|
|
|
|
|
|
|
|
/* wait 30 seconds isr trigger */
|
|
|
|
|
sleep(30);
|
2015-03-23 14:39:12 +00:00
|
|
|
//! [Interesting]
|
2014-05-22 14:17:33 +01:00
|
|
|
|
2018-01-24 15:09:29 +05:30
|
|
|
return EXIT_SUCCESS;
|
2014-05-22 14:17:33 +01:00
|
|
|
}
|