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: mbed
MS5611/MS5611SPI.h
- Committer:
- altb2
- Date:
- 2020-05-19
- Revision:
- 2:4d9204790be1
File content as of revision 2:4d9204790be1:
/* Copyright (c) 2012, Senio Networks, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* MS5611 Modifications Aerodyne Labs Matthew Nelson - 2014 This library was originally the MS5607 library. It has been modified to to be used the MS5611 Pressure sensor */ #ifndef MS5611_SPI_H #define MS5611_SPI_H #include "MS5611Base.h" class MS5611SPI : public MS5611Base { public: MS5611SPI(PinName mosi, PinName miso, PinName sclk, PinName csb) : spi(mosi, miso, sclk), csb(csb) { init(); } private: SPI spi; DigitalOut csb; virtual void writeCommand(int command, int ms = 0) { csb = 0; spi.write(command); if (ms) wait_ms(ms); csb = 1; } virtual int readPROM(int address) { csb = 0; spi.write(PROM_READ | address << 1); int hi = spi.write(0); int low = spi.write(0); csb = 1; return hi << 8 | low; } virtual int readADC(int command) { csb = 0; spi.write(ADC_CONV | command); static int duration[] = {500, 1100, 2100, 4100, 8220}; wait_us(duration[(command & 0x0F) >> 1]); csb = 1; csb = 0; spi.write(ADC_READ); int hi = spi.write(0); int mid = spi.write(0); int low = spi.write(0); csb = 1; return hi << 16 | mid << 8 | low; } }; #endif