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.
Revision 0:804d45caee8d, committed 2017-08-25
- Comitter:
- alienbernamaihsan
- Date:
- Fri Aug 25 08:02:16 2017 +0000
- Commit message:
- CMPS11 for Serial mode
Changed in this revision
| CMPS11.cpp | Show annotated file Show diff for this revision Revisions of this file |
| CMPS11.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 000000000000 -r 804d45caee8d CMPS11.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CMPS11.cpp Fri Aug 25 08:02:16 2017 +0000
@@ -0,0 +1,102 @@
+#include "CMPS11.h"
+
+cmps11::cmps11(PinName tx, PinName rx ) : _cmps11(tx,rx)
+{
+ readnow = 0 ;
+ readlast = 0 ;
+ sudut = 0 ;
+ modelast = 0 ;
+ modenow = 0 ;
+ _cmps11.format(8,SerialBase::None,2);
+}
+
+char cmps11::startCalibration()
+{
+ _cmps11.putc(0xF0);
+ while( !(_cmps11.readable()))
+ {}
+ if( _cmps11.getc() != 0x55 )
+ {
+ return 0 ;
+ }
+
+ _cmps11.putc(0xF5);
+ while( !(_cmps11.readable()))
+ {}
+ if( _cmps11.getc() != 0x55 )
+ {
+ return 0 ;
+ }
+
+ _cmps11.putc(0xF7);
+ while( !(_cmps11.readable()))
+ {}
+ if( _cmps11.getc() != 0x55 )
+ {
+ return 0 ;
+ }
+ return 1 ;
+}
+
+char cmps11::stopCalibration()
+{
+ _cmps11.putc(0xF8);
+ while( !(_cmps11.readable()))
+ {}
+ if( _cmps11.getc() != 0x55 )
+ {
+ return 0 ;
+ }
+ cmps11::set0degree() ;
+ return 1 ;
+}
+
+int cmps11::readCompassAngle16Bit()
+{
+ _cmps11.putc(0x13);
+ while ( !(_cmps11.readable()) ) ;
+ buffer[0] = _cmps11.getc() ;
+ while ( !(_cmps11.readable()) ) ;
+ buffer[1] = _cmps11.getc() ;
+
+ return ( ( buffer[0] << 8 ) | buffer[1] ) ;
+
+}
+
+void cmps11::set0degree()
+{
+ sudut = 0 ;
+ readnow = cmps11::readCompassAngle16Bit() ;
+ readlast = readnow ;
+}
+
+int cmps11::readAngle16Bit()
+{
+ readnow = cmps11::readCompassAngle16Bit() ;
+ bufferx = readnow-readlast ;
+ readlast = readnow ;
+ sudut += bufferx ;
+
+ if ( (( sudut < 0 ) || ( sudut > 3599 )))
+ {
+ modenow = 1 ;
+ }
+ else
+ {
+ modenow = 0 ;
+ }
+
+ if ( modelast != modenow )
+ {
+ if ( sudut < 0 )
+ {
+ sudut += 3599 ;
+ }
+ else if ( sudut > 3599 )
+ {
+ sudut -= 3599 ;
+ }
+ modelast = modenow ;
+ }
+ return ( sudut );
+}
\ No newline at end of file
diff -r 000000000000 -r 804d45caee8d CMPS11.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CMPS11.h Fri Aug 25 08:02:16 2017 +0000
@@ -0,0 +1,24 @@
+#ifndef CMPS11_H
+#define CMPS11_H
+
+#include "mbed.h"
+
+class cmps11
+{
+
+public:
+ cmps11(PinName tx , PinName rx );
+ char startCalibration() ;
+ char stopCalibration();
+ int readCompassAngle16Bit() ;
+ void set0degree();
+ int readAngle16Bit() ;
+
+private:
+ Serial _cmps11 ;
+ char readstate , buffer[2] , modelast , modenow ;
+ int readnow , readlast , sudut , bufferx;
+
+};
+
+#endif