1 /**************************************************************************//** 2 * @file HAL_device.h 3 * @brief CMSIS Cortex-M Peripheral Access Layer for MindMotion 4 * microcontroller devices 5 * 6 * This is a convenience header file for defining the part number on the 7 * build command line, instead of specifying the part specific header file. 8 * 9 * Example: Add "MM32L073PF" to your build options, to define part 10 * Add "#include "HAL_device.h" to your source files 11 * 12 * 13 * @version 2.0.0 14 * 15 * 16 *****************************************************************************/ 17 18 #ifndef __HAL_device_H 19 #define __HAL_device_H 20 21 #define MM32L0xxxx 22 23 #if defined(MM32L0xxxx) 24 25 #include "MM32L0xx.h" 26 #include "system_MM32L0xx.h" 27 #else 28 #error "HAL_device.h: PART NUMBER undefined" 29 #endif 30 #endif /* __HAL_device_H */ 31 /*-------------------------(C) COPYRIGHT 2016 MindMotion ----------------------*/ 32