1 /** @file rtp.h 2 * @brief RTP 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 __RTP_H__ 12 #define __RTP_H__ 13 14 #include "reg_rtp.h" 15 16 /** 17 * @defgroup RTP RTP 18 * @brief RAM Trace Port. 19 * 20 * RAM Trace Port (RTP) module provides the features to datalog the RAM contents of the devices 21 * or accesses to peripherals without program intrusion. It can trace all data write or read accesses to internal RAM. 22 * 23 * Related Files 24 * - reg_rtp.h 25 * - rtp.h 26 * - rtp.c 27 * @addtogroup RTP 28 * @{ 29 */ 30 31 /* RTP Interface Functions */ 32 void rtpInit(void); 33 34 /**@}*/ 35 #endif 36