Darien Figueroa / Mbed OS Final_Program

Dependencies:   USBDevice

Committer:
darienf
Date:
Sat Apr 10 03:05:42 2021 +0000
Revision:
3:36de8b9e4b1a
ayoooo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
darienf 3:36de8b9e4b1a 1 /*******************************************************************************
darienf 3:36de8b9e4b1a 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
darienf 3:36de8b9e4b1a 3 *
darienf 3:36de8b9e4b1a 4 * Permission is hereby granted, free of charge, to any person obtaining a
darienf 3:36de8b9e4b1a 5 * copy of this software and associated documentation files (the "Software"),
darienf 3:36de8b9e4b1a 6 * to deal in the Software without restriction, including without limitation
darienf 3:36de8b9e4b1a 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
darienf 3:36de8b9e4b1a 8 * and/or sell copies of the Software, and to permit persons to whom the
darienf 3:36de8b9e4b1a 9 * Software is furnished to do so, subject to the following conditions:
darienf 3:36de8b9e4b1a 10 *
darienf 3:36de8b9e4b1a 11 * The above copyright notice and this permission notice shall be included
darienf 3:36de8b9e4b1a 12 * in all copies or substantial portions of the Software.
darienf 3:36de8b9e4b1a 13 *
darienf 3:36de8b9e4b1a 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
darienf 3:36de8b9e4b1a 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
darienf 3:36de8b9e4b1a 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
darienf 3:36de8b9e4b1a 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
darienf 3:36de8b9e4b1a 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
darienf 3:36de8b9e4b1a 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
darienf 3:36de8b9e4b1a 20 * OTHER DEALINGS IN THE SOFTWARE.
darienf 3:36de8b9e4b1a 21 *
darienf 3:36de8b9e4b1a 22 * Except as contained in this notice, the name of Maxim Integrated
darienf 3:36de8b9e4b1a 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
darienf 3:36de8b9e4b1a 24 * Products, Inc. Branding Policy.
darienf 3:36de8b9e4b1a 25 *
darienf 3:36de8b9e4b1a 26 * The mere transfer of this software does not imply any licenses
darienf 3:36de8b9e4b1a 27 * of trade secrets, proprietary technology, copyrights, patents,
darienf 3:36de8b9e4b1a 28 * trademarks, maskwork rights, or any other form of intellectual
darienf 3:36de8b9e4b1a 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
darienf 3:36de8b9e4b1a 30 * ownership rights.
darienf 3:36de8b9e4b1a 31 *******************************************************************************
darienf 3:36de8b9e4b1a 32 */
darienf 3:36de8b9e4b1a 33 #include "Peripherals.h"
darienf 3:36de8b9e4b1a 34
darienf 3:36de8b9e4b1a 35 I2C *Peripherals::mI2c1 = NULL;
darienf 3:36de8b9e4b1a 36 I2C *Peripherals::mI2c2 = NULL;
darienf 3:36de8b9e4b1a 37 USBSerial *Peripherals::mUSBSerial = NULL;
darienf 3:36de8b9e4b1a 38 MAX30101 *Peripherals::mMAX30101 = NULL;
darienf 3:36de8b9e4b1a 39 MAX30001 *Peripherals::mMAX30001 = NULL;
darienf 3:36de8b9e4b1a 40 BMP280 *Peripherals::mBMP280 = NULL;
darienf 3:36de8b9e4b1a 41 HspLed *Peripherals::mHspLed = NULL;
darienf 3:36de8b9e4b1a 42 MAX30205 *Peripherals::mMAX30205_top = NULL;
darienf 3:36de8b9e4b1a 43 MAX30205 *Peripherals::mMAX30205_bottom = NULL;
darienf 3:36de8b9e4b1a 44 LIS2DH *Peripherals::mLIS2DH = NULL;
darienf 3:36de8b9e4b1a 45 Timer *Peripherals::mTimestampTimer = NULL;
darienf 3:36de8b9e4b1a 46 S25FS512 *Peripherals::mS25FS512 = NULL;
darienf 3:36de8b9e4b1a 47 PushButton *Peripherals::mPushButton = NULL;
darienf 3:36de8b9e4b1a 48 BLE *Peripherals::mBLE = NULL;
darienf 3:36de8b9e4b1a 49 MAX14720 *Peripherals::mMAX14720 = NULL;
darienf 3:36de8b9e4b1a 50 HspBLE *Peripherals::mhspBLE = NULL;