/* * gnss.cpp * * Created on: Dec 29, 2014 * Author: aras */ #include 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; } }