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.
Unwrapper.h
00001 /* 00002 */ 00003 00004 using namespace std; 00005 00006 class Unwrapper 00007 { 00008 public: 00009 00010 Unwrapper(double); 00011 00012 double operator()(short inc) { 00013 return doStep(inc); 00014 } 00015 00016 virtual ~Unwrapper(); 00017 00018 void reset(void); 00019 double doStep(short inc); 00020 00021 private: 00022 00023 long last_value; 00024 double inc2rad; 00025 00026 };
Generated on Wed Jul 13 2022 23:05:32 by
1.7.2