TEST

Dependencies:   max32630fthr Adafruit_FeatherOLED USBDevice

Committer:
wwwarunraj
Date:
Sun Apr 19 11:19:57 2020 +0000
Revision:
4:291477e8690d
Parent:
1:f60eafbf009a
19/04

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gmehmet 1:f60eafbf009a 1 /*******************************************************************************
gmehmet 1:f60eafbf009a 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
gmehmet 1:f60eafbf009a 3 *
gmehmet 1:f60eafbf009a 4 * Permission is hereby granted, free of charge, to any person obtaining a
gmehmet 1:f60eafbf009a 5 * copy of this software and associated documentation files (the "Software"),
gmehmet 1:f60eafbf009a 6 * to deal in the Software without restriction, including without limitation
gmehmet 1:f60eafbf009a 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
gmehmet 1:f60eafbf009a 8 * and/or sell copies of the Software, and to permit persons to whom the
gmehmet 1:f60eafbf009a 9 * Software is furnished to do so, subject to the following conditions:
gmehmet 1:f60eafbf009a 10 *
gmehmet 1:f60eafbf009a 11 * The above copyright notice and this permission notice shall be included
gmehmet 1:f60eafbf009a 12 * in all copies or substantial portions of the Software.
gmehmet 1:f60eafbf009a 13 *
gmehmet 1:f60eafbf009a 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
gmehmet 1:f60eafbf009a 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
gmehmet 1:f60eafbf009a 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
gmehmet 1:f60eafbf009a 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
gmehmet 1:f60eafbf009a 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
gmehmet 1:f60eafbf009a 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
gmehmet 1:f60eafbf009a 20 * OTHER DEALINGS IN THE SOFTWARE.
gmehmet 1:f60eafbf009a 21 *
gmehmet 1:f60eafbf009a 22 * Except as contained in this notice, the name of Maxim Integrated
gmehmet 1:f60eafbf009a 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
gmehmet 1:f60eafbf009a 24 * Products, Inc. Branding Policy.
gmehmet 1:f60eafbf009a 25 *
gmehmet 1:f60eafbf009a 26 * The mere transfer of this software does not imply any licenses
gmehmet 1:f60eafbf009a 27 * of trade secrets, proprietary technology, copyrights, patents,
gmehmet 1:f60eafbf009a 28 * trademarks, maskwork rights, or any other form of intellectual
gmehmet 1:f60eafbf009a 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
gmehmet 1:f60eafbf009a 30 * ownership rights.
gmehmet 1:f60eafbf009a 31 *******************************************************************************
gmehmet 1:f60eafbf009a 32 */
gmehmet 1:f60eafbf009a 33 #ifndef _PERIPHERALS_H_
gmehmet 1:f60eafbf009a 34 #define _PERIPHERALS_H_
gmehmet 1:f60eafbf009a 35
gmehmet 1:f60eafbf009a 36 #include "mbed.h"
gmehmet 1:f60eafbf009a 37 #include "Serial.h"
gmehmet 1:f60eafbf009a 38 #include "USBSerial.h"
gmehmet 1:f60eafbf009a 39
gmehmet 1:f60eafbf009a 40
gmehmet 1:f60eafbf009a 41 #include "MAX30001.h"
gmehmet 1:f60eafbf009a 42 #include "MAX30001_Helper.h"
gmehmet 1:f60eafbf009a 43
gmehmet 1:f60eafbf009a 44
gmehmet 1:f60eafbf009a 45 #define pr_USB(fmt, args...) if(Peripherals::usbSerial() != NULL) \
gmehmet 1:f60eafbf009a 46 Peripherals::usbSerial()->printf("\r\n[" fmt "[(%s:%d)\r\n", ##args, __func__, __LINE__)
gmehmet 1:f60eafbf009a 47
gmehmet 1:f60eafbf009a 48 #define pr_SERIAL(fmt, args...) printf("\r\n[" fmt "[(%s:%d)\r\n", ##args, __func__, __LINE__)
gmehmet 1:f60eafbf009a 49
gmehmet 1:f60eafbf009a 50 #define pr_err(fmt, args...) if(Peripherals::usbSerial() != NULL) \
gmehmet 1:f60eafbf009a 51 Peripherals::usbSerial()->printf("\r\n[" fmt "[(%s:%d)\r\n", ##args, __func__, __LINE__); \
gmehmet 1:f60eafbf009a 52 if (Peripherals::daplinkSerial() != NULL) \
gmehmet 1:f60eafbf009a 53 Peripherals::daplinkSerial()->printf("\r\n[" fmt, ##args);
gmehmet 1:f60eafbf009a 54
gmehmet 1:f60eafbf009a 55 #ifdef SHOW_DEBUG_MSGS
gmehmet 1:f60eafbf009a 56 #define pr_debug(fmt, args...) if(Peripherals::usbSerial() != NULL) \
gmehmet 1:f60eafbf009a 57 Peripherals::usbSerial()->printf("\r\n[" fmt "[(%s:%d)\r\n", ##args, __func__, __LINE__); \
gmehmet 1:f60eafbf009a 58 if (Peripherals::daplinkSerial() != NULL) \
gmehmet 1:f60eafbf009a 59 Peripherals::daplinkSerial()->printf("\r\n[" fmt, ##args);
gmehmet 1:f60eafbf009a 60 #else
gmehmet 1:f60eafbf009a 61 #define pr_debug(fmt, args...)
gmehmet 1:f60eafbf009a 62 #endif
gmehmet 1:f60eafbf009a 63
gmehmet 1:f60eafbf009a 64 #ifdef SHOW_INFO_MSGS
gmehmet 1:f60eafbf009a 65 #define pr_info(fmt, args...) if(Peripherals::usbSerial() != NULL)\
gmehmet 1:f60eafbf009a 66 Peripherals::usbSerial()->printf("[" fmt, ##args); \
gmehmet 1:f60eafbf009a 67 if (Peripherals::daplinkSerial() != NULL)\
gmehmet 1:f60eafbf009a 68 Peripherals::daplinkSerial()->printf("\r\n[" fmt, ##args);
gmehmet 1:f60eafbf009a 69 #else
gmehmet 1:f60eafbf009a 70 #define pr_info(fmt, args...)
gmehmet 1:f60eafbf009a 71 #endif
gmehmet 1:f60eafbf009a 72
gmehmet 1:f60eafbf009a 73 /**
gmehmet 1:f60eafbf009a 74 * This static class is used as a central locatoin for all devices on the HSP platform
gmehmet 1:f60eafbf009a 75 * it gives (in-effect) a singleton interface for each device so that anywhere in code
gmehmet 1:f60eafbf009a 76 * one can reference on of these devices
gmehmet 1:f60eafbf009a 77 */
gmehmet 1:f60eafbf009a 78 class Peripherals {
gmehmet 1:f60eafbf009a 79 public:
gmehmet 1:f60eafbf009a 80 static USBSerial *setUSBSerial(USBSerial * device) { mUSBSerial = device; return device; }
gmehmet 1:f60eafbf009a 81 static USBSerial *usbSerial(void) { return mUSBSerial; }
gmehmet 1:f60eafbf009a 82
gmehmet 1:f60eafbf009a 83 static Serial *setDaplinkSerial(Serial * device) { mDaplinkSerial = device; return device; }
gmehmet 1:f60eafbf009a 84 static Serial *daplinkSerial(void) { return mDaplinkSerial; }
gmehmet 1:f60eafbf009a 85
gmehmet 1:f60eafbf009a 86
gmehmet 1:f60eafbf009a 87 static MAX30001 *max30001(void) { return mMAX30001; }
gmehmet 1:f60eafbf009a 88 static MAX30001 *setMAX30001(MAX30001 *device) { mMAX30001 = device; return device; }
gmehmet 1:f60eafbf009a 89
gmehmet 1:f60eafbf009a 90 static MAX30001_Helper *max30001Helper(void) { return mMAX30001_Helper; }
gmehmet 1:f60eafbf009a 91 static MAX30001_Helper *setMAX30001Helper(MAX30001_Helper *device) { mMAX30001_Helper = device; return device; }
gmehmet 1:f60eafbf009a 92
gmehmet 1:f60eafbf009a 93
gmehmet 1:f60eafbf009a 94 private:
gmehmet 1:f60eafbf009a 95 static USBSerial *mUSBSerial;
gmehmet 1:f60eafbf009a 96 static Serial *mDaplinkSerial;
gmehmet 1:f60eafbf009a 97
gmehmet 1:f60eafbf009a 98 static MAX30001 *mMAX30001;
gmehmet 1:f60eafbf009a 99 static MAX30001_Helper *mMAX30001_Helper;
gmehmet 1:f60eafbf009a 100
gmehmet 1:f60eafbf009a 101 };
gmehmet 1:f60eafbf009a 102
gmehmet 1:f60eafbf009a 103 #endif // _PERIPHERALS_H_
gmehmet 1:f60eafbf009a 104