mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-18 04:37:36 +08:00
15 lines
267 B
C++
15 lines
267 B
C++
/*
|
|
* Copyright (C) 2014 Pavel Kirienko <pavel.kirienko@gmail.com>
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <uavcan/uavcan.hpp>
|
|
#include <uavcan_linux/socketcan.hpp>
|
|
#include <uavcan_linux/clock.hpp>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello owl." << std::endl;
|
|
return 0;
|
|
}
|