| 68 | } |
| 69 | |
| 70 | void initVDisplayDriver() { |
| 71 | vDisplayDriverStatus = VDISPLAY::openVDisplayDevice(); |
| 72 | if (vDisplayDriverStatus == VDISPLAY::DRIVER_STATUS::OK) { |
| 73 | if (!VDISPLAY::startPingThread(onVDisplayWatchdogFailed)) { |
| 74 | onVDisplayWatchdogFailed(); |
| 75 | return; |
| 76 | } |
| 77 | } |
| 78 | } |
| 79 | #endif |
| 80 | |
| 81 | class deinit_t: public platf::deinit_t { |
no test coverage detected