Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: ConfigFile SDFileSystem mbed
Fork of LAURUS_program by
GMS6_CR6.h
00001 #pragma once 00002 00003 const int BuffSize = 256; 00004 00005 class GMS6_CR6 { 00006 00007 public: 00008 GMS6_CR6(Serial* ps, Serial* pc); 00009 ~GMS6_CR6(); 00010 void INT_Rx(); 00011 void read(); 00012 00013 char lat_hem, lng_hem; 00014 float raw_longitude, raw_latitude; 00015 float longitude, latitude; 00016 float time; 00017 int mode; 00018 int Ns; 00019 00020 private: 00021 Serial* p_port; 00022 Serial* p_pc; 00023 char buff1[BuffSize]; 00024 char buff2[BuffSize]; 00025 int pointer; 00026 volatile int INT_flag; 00027 };
Generated on Thu Jul 14 2022 07:53:07 by
1.7.2
