目前在一个SBC(Olimex A20)的gpio上工作,QSocketNotifier有问题。在我的gpio上,我使用了一个具有中断能力的pin(对于那些想知道更多的人:https://developer.ridgerun.com/wiki/index.php/How_to_use_GPIO_signals
)以及一个QSocketNotifier来监视更改。
这是我的课,用来打断别人:

OLinuXinoGPIOEdge::OLinuXinoGPIOEdge(int num)
    : m_gpioNumber(num), m_value(false), m_direction(IN)
{
    this->exportGPIO(); // equivalent to 'echo num > export'
    this->setDirection(IN); // for security
    m_fileValue.setFileName("/sys/class/gpio/gpio20_pi11"); // the path of the pin
    this->setEdge(BOTH); // edge's detection (both/falling/rising/none)
    m_timer = new QTimer();
    m_timer->setInterval(10);
    m_timer->setSingleShot(true);
    m_fileValue.open(QFile::ReadOnly);
    m_fileNotifier = new QSocketNotifier(m_fileValue.handle(), QSocketNotifier::Exception); // Actually, emits the signal whenever an interruption is raised or not
    connect(m_fileNotifier, SIGNAL(activated(int)), m_timer, SLOT(start()));
    connect(m_timer, SIGNAL(timeout()), this, SLOT(changeNotifier()));
}

我已经问了一个问题(这里:https://stackoverflow.com/questions/23955609/qtimer-and-qsocketnotifier),但是问题变了,所以我在这里再问一次。
为什么QSocketNotifier会持续发出信号?在GPIO的目录中,可以修改文件“edge”以在下降、上升、两者都有或没有边缘时引发中断,这意味着中断只应在此边缘上引发。

最佳答案

好的,我有我的解决方案:QSocketNotifier不断地发出信号,直到您对文件使用“readAll()”函数。所以需要尽快调用readAll()来停止QSocketNotifier的垃圾邮件。

10-01 08:57