gnss.cpp
33 lines
| 368 B
| text/x-c
|
CppLexer
|
r177 | /* | ||
* gnss.cpp | ||||
* | ||||
* Created on: Dec 29, 2014 | ||||
* Author: aras | ||||
*/ | ||||
#include <gnss.h> | ||||
namespace te_gnss { | ||||
|
r196 | bool te_gnss_configure(gnss_config_struct &gcs){ | ||
|
r177 | return true; | ||
} | ||||
|
r196 | bool te_gnss_activate(){ | ||
|
r177 | return true; | ||
} | ||||
|
r196 | bool te_gnss_deactivate(){ | ||
|
r177 | return true; | ||
} | ||||
|
r196 | bool te_gnss_sync_pps(){ | ||
|
r177 | return true; | ||
} | ||||
|
r196 | |||
bool te_gnss_is_locked(){ | ||||
|
r177 | return true; | ||
} | ||||
} | ||||