Working UAVCAN node. No application logic is implemented yet; the node just publishes its status once a second (uavcan.protocol.NodeStatus) and responds to basic services (transport stats, node discovery)

This commit is contained in:
Pavel Kirienko
2014-05-07 13:42:34 +04:00
parent 5716dad25d
commit 4b11145797
3 changed files with 152 additions and 35 deletions
+8 -1
View File
@@ -60,6 +60,13 @@ uavcan::uint64_t getUtcUSecFromCanInterrupt()
return 0;
}
}
} // namespace clock
SystemClock& SystemClock::instance()
{
static SystemClock inst;
return inst;
}
}