1 /** @file dmm.h 2 * @brief DMM Driver Definition File 3 * @date 29.May.2013 4 * @version 03.05.02 5 * 6 */ 7 8 /* (c) Texas Instruments 2009-2013, All rights reserved. */ 9 10 11 #ifndef __DMM_H__ 12 #define __DMM_H__ 13 14 #include "reg_dmm.h" 15 16 17 /** 18 * @defgroup DMM DMM 19 * @brief Data Modification Module. 20 * 21 * The DMM module provides the capability to modify data in the entire 4 GB address space of the device from an external peripheral, 22 * with minimal interruption of the application. 23 * 24 * Related Files 25 * - reg_dmm.h 26 * - dmm.h 27 * - dmm.c 28 * @addtogroup DMM 29 * @{ 30 */ 31 /* DMM Interface Functions */ 32 33 void dmmInit(void); 34 35 /**@}*/ 36 #endif 37