gnss.cpp
35 lines
| 388 B
| text/x-c
|
CppLexer
|
r177 | /* | ||
* gnss.cpp | ||||
* | ||||
* Created on: Dec 29, 2014 | ||||
* Author: aras | ||||
*/ | ||||
#include <gnss.h> | ||||
namespace te_gnss { | ||||
bool configure(gnss_config_struct* cs){ | ||||
return true; | ||||
} | ||||
bool activate(){ | ||||
return true; | ||||
} | ||||
bool deactivate(){ | ||||
return true; | ||||
} | ||||
bool sync_pps(){ | ||||
return true; | ||||
} | ||||
bool get_time_info(gnss_precise_time* pt){ | ||||
return true; | ||||
} | ||||
bool is_locked(){ | ||||
return true; | ||||
} | ||||
} | ||||