| 60 | *****************************************************************************/ |
| 61 | |
| 62 | ISensorChannel* SensorSystem::getChannel(uint8_t index) |
| 63 | { |
| 64 | ISensorChannel* channel = nullptr; |
| 65 | |
| 66 | switch (index) |
| 67 | { |
| 68 | case 0U: |
| 69 | channel = &m_uptimeChannel; |
| 70 | break; |
| 71 | |
| 72 | default: |
| 73 | break; |
| 74 | } |
| 75 | |
| 76 | return channel; |
| 77 | } |
| 78 | |
| 79 | /****************************************************************************** |
| 80 | * Protected Methods |
nothing calls this directly
no outgoing calls
no test coverage detected