A collection of Analog Devices drivers for the mbed platform

For additional information check out the mbed page of the Analog Devices wiki: https://wiki.analog.com/resources/tools-software/mbed-drivers-all

Committer:
Adrian Suciu
Date:
Mon Nov 07 16:27:12 2016 +0200
Revision:
33:c3ec596a29c2
Parent:
29:c693bdaac786
Added CN0391, CN0396 and CN0397 shields

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Adrian Suciu 24:dae7123d432a 1 /**
Adrian Suciu 24:dae7123d432a 2 * @file EVAL_ADXL362_ARDZ.cpp
Adrian Suciu 24:dae7123d432a 3 * @brief Header file for the EVAL-ADXL362-ARDZ board
Adrian Suciu 24:dae7123d432a 4 * @author Analog Devices Inc.
Adrian Suciu 24:dae7123d432a 5 *
Adrian Suciu 24:dae7123d432a 6 * For support please go to:
Adrian Suciu 24:dae7123d432a 7 * Github: https://github.com/analogdevicesinc/mbed-adi
Adrian Suciu 24:dae7123d432a 8 * Support: https://ez.analog.com/community/linux-device-drivers/microcontroller-no-os-drivers
Adrian Suciu 24:dae7123d432a 9 * Product: www.analog.com/EVAL-ADXL362-ARDZ
Adrian Suciu 24:dae7123d432a 10 * More: https://wiki.analog.com/resources/tools-software/mbed-drivers-all
Adrian Suciu 24:dae7123d432a 11
Adrian Suciu 24:dae7123d432a 12 ********************************************************************************
Adrian Suciu 24:dae7123d432a 13 * Copyright 2016(c) Analog Devices, Inc.
Adrian Suciu 24:dae7123d432a 14 *
Adrian Suciu 24:dae7123d432a 15 * All rights reserved.
Adrian Suciu 24:dae7123d432a 16 *
Adrian Suciu 24:dae7123d432a 17 * Redistribution and use in source and binary forms, with or without
Adrian Suciu 24:dae7123d432a 18 * modification, are permitted provided that the following conditions are met:
Adrian Suciu 24:dae7123d432a 19 * - Redistributions of source code must retain the above copyright
Adrian Suciu 24:dae7123d432a 20 * notice, this list of conditions and the following disclaimer.
Adrian Suciu 24:dae7123d432a 21 * - Redistributions in binary form must reproduce the above copyright
Adrian Suciu 24:dae7123d432a 22 * notice, this list of conditions and the following disclaimer in
Adrian Suciu 24:dae7123d432a 23 * the documentation and/or other materials provided with the
Adrian Suciu 24:dae7123d432a 24 * distribution.
Adrian Suciu 24:dae7123d432a 25 * - Neither the name of Analog Devices, Inc. nor the names of its
Adrian Suciu 24:dae7123d432a 26 * contributors may be used to endorse or promote products derived
Adrian Suciu 24:dae7123d432a 27 * from this software without specific prior written permission.
Adrian Suciu 24:dae7123d432a 28 * - The use of this software may or may not infringe the patent rights
Adrian Suciu 24:dae7123d432a 29 * of one or more patent holders. This license does not release you
Adrian Suciu 24:dae7123d432a 30 * from the requirement that you obtain separate licenses from these
Adrian Suciu 24:dae7123d432a 31 * patent holders to use this software.
Adrian Suciu 24:dae7123d432a 32 * - Use of the software either in source or binary form, must be run
Adrian Suciu 24:dae7123d432a 33 * on or directly connected to an Analog Devices Inc. component.
Adrian Suciu 24:dae7123d432a 34 *
Adrian Suciu 24:dae7123d432a 35 * THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES "AS IS" AND ANY EXPRESS OR
Adrian Suciu 24:dae7123d432a 36 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT,
Adrian Suciu 24:dae7123d432a 37 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
Adrian Suciu 24:dae7123d432a 38 * IN NO EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT,
Adrian Suciu 24:dae7123d432a 39 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Adrian Suciu 24:dae7123d432a 40 * LIMITED TO, INTELLECTUAL PROPERTY RIGHTS, PROCUREMENT OF SUBSTITUTE GOODS OR
Adrian Suciu 24:dae7123d432a 41 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Adrian Suciu 24:dae7123d432a 42 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Adrian Suciu 24:dae7123d432a 43 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Adrian Suciu 24:dae7123d432a 44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Adrian Suciu 24:dae7123d432a 45 *
Adrian Suciu 24:dae7123d432a 46 ********************************************************************************/
Adrian Suciu 24:dae7123d432a 47
Adrian Suciu 24:dae7123d432a 48 #ifndef EVAL_ADXL362_ARDZ_H
Adrian Suciu 24:dae7123d432a 49 #define EVAL_ADXL362_ARDZ_H
Adrian Suciu 24:dae7123d432a 50
Adrian Suciu 24:dae7123d432a 51 #include "Lcd.h"
Adrian Suciu 24:dae7123d432a 52 #include "ADXL362.h"
Adrian Suciu 24:dae7123d432a 53
Adrian Suciu 29:c693bdaac786 54 /**
Adrian Suciu 29:c693bdaac786 55 * @brief EVAL-ADXL362_ARDZ accelerometer shield
Adrian Suciu 29:c693bdaac786 56 */
Adrian Suciu 24:dae7123d432a 57 class EVAL_ADXL362_ARDZ
Adrian Suciu 24:dae7123d432a 58 {
Adrian Suciu 24:dae7123d432a 59 public:
Adrian Suciu 24:dae7123d432a 60 EVAL_ADXL362_ARDZ(Lcd& _lcd, ADXL362& _adxl362) ;
Adrian Suciu 24:dae7123d432a 61 void ADXL_setup();
Adrian Suciu 24:dae7123d432a 62 void ADXL_scan_xyzt();
Adrian Suciu 24:dae7123d432a 63 bool ADXL_get_int();
Adrian Suciu 24:dae7123d432a 64
Adrian Suciu 24:dae7123d432a 65 void LCD_setup();
Adrian Suciu 24:dae7123d432a 66 void LCD_init_display();
Adrian Suciu 24:dae7123d432a 67 void LCD_deinit_display();
Adrian Suciu 24:dae7123d432a 68 void LCD_display_level();
Adrian Suciu 24:dae7123d432a 69 void LCD_display_values();
Adrian Suciu 24:dae7123d432a 70
Adrian Suciu 24:dae7123d432a 71 Lcd lcd;
Adrian Suciu 24:dae7123d432a 72 ADXL362 adxl362;
Adrian Suciu 24:dae7123d432a 73
Adrian Suciu 24:dae7123d432a 74 private:
Adrian Suciu 24:dae7123d432a 75
Adrian Suciu 24:dae7123d432a 76 uint8_t _lcd_on;
Adrian Suciu 24:dae7123d432a 77 int16_t _x_axis_data;
Adrian Suciu 24:dae7123d432a 78 int16_t _y_axis_data;
Adrian Suciu 24:dae7123d432a 79 int16_t _z_axis_data;
Adrian Suciu 24:dae7123d432a 80 int16_t _t_data;
Adrian Suciu 24:dae7123d432a 81
Adrian Suciu 24:dae7123d432a 82 static const uint16_t INACT_VAL = 50;
Adrian Suciu 24:dae7123d432a 83 static const uint16_t INACT_TIMER = 100 * 10;
Adrian Suciu 24:dae7123d432a 84 static const uint16_t ACT_VAL = 50;
Adrian Suciu 24:dae7123d432a 85 static const uint8_t ACT_TIMER = 100;
Adrian Suciu 24:dae7123d432a 86 static const uint16_t SCAN_SENSOR_TIME = 500;
Adrian Suciu 24:dae7123d432a 87 };
Adrian Suciu 24:dae7123d432a 88
Adrian Suciu 24:dae7123d432a 89 #endif