##// END OF EJS Templates
update de firmware timegine. RTC terminado
update de firmware timegine. RTC terminado

File last commit:

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