| 60 | *****************************************************************************/ |
| 61 | |
| 62 | void SensorDataProviderImpl::begin() |
| 63 | { |
| 64 | uint8_t index = 0U; |
| 65 | |
| 66 | for (index = 0U; index < m_cnt; ++index) |
| 67 | { |
| 68 | if (nullptr != m_sensors[index]) |
| 69 | { |
| 70 | m_sensors[index]->begin(); |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void SensorDataProviderImpl::process() |
| 76 | { |
nothing calls this directly
no outgoing calls
no test coverage detected