| 141 | } |
| 142 | |
| 143 | bool SensorPlugin::hasTopicChanged(const String& topic) |
| 144 | { |
| 145 | MutexGuard<MutexRecursive> guard(m_mutex); |
| 146 | bool hasTopicChanged = m_hasTopicChanged; |
| 147 | |
| 148 | /* Only a single topic, therefore its not necessary to check. */ |
| 149 | PLUGIN_NOT_USED(topic); |
| 150 | |
| 151 | m_hasTopicChanged = false; |
| 152 | |
| 153 | return hasTopicChanged; |
| 154 | } |
| 155 | |
| 156 | void SensorPlugin::start(uint16_t width, uint16_t height) |
| 157 | { |
nothing calls this directly
no outgoing calls
no test coverage detected