/******************************************************************************* Copyright (c) 2020 - Analog Devices Inc. All Rights Reserved. This software is proprietary & confidential to Analog Devices, Inc. and its licensor. ****************************************************************************** * @file: common.h * @brief: Standard common header files * @version: $Revision$ * @date: $Date$ * Developed by: ADIBMS Software team, Bangalore, India *****************************************************************************/ #ifndef __COMMON_H_ #define __COMMON_H_ #include #include #include #include #include #define MBED /* Switch between IAR Workbench or Mbed Studio. */ #ifdef MBED #include "mbed.h" #include "SPI.h" #include "Timer.h" #endif #endif