mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 06:19:22 +08:00
f51bce3fed
We currently only support building with CCS and SCons is not using. bsp/rm48x50/HALCoGen/HALCoGen.{hcg,dil} is the HALCoGen project file. You may need to regenerate the source file as you like, providing that: 1, IRQ is in Dispatch Mode and the table entry is IRQ_Handler. The channel 5 in enabled and connected to IRQ. 2, RTI driver is enabled and compare3 source is selected to counter1 and the compare3 will generate tick in the period of 10ms. This value is coresponding with RT_TICK_PER_SECOND in rtconfig.h. In CCS, you need to create a new CCS project and create link folders pointing at bsp/rm48x50, libcpu/arm/rm48x50 and src/, include/. Remember to add the include path to the Build Properties.
37 lines
643 B
C
37 lines
643 B
C
/** @file dmm.h
|
|
* @brief DMM Driver Definition File
|
|
* @date 23.May.2013
|
|
* @version 03.05.01
|
|
*
|
|
*/
|
|
|
|
/* (c) Texas Instruments 2009-2013, All rights reserved. */
|
|
|
|
|
|
#ifndef __DMM_H__
|
|
#define __DMM_H__
|
|
|
|
#include "reg_dmm.h"
|
|
|
|
|
|
/**
|
|
* @defgroup DMM DMM
|
|
* @brief Data Modification Module.
|
|
*
|
|
* The DMM module provides the capability to modify data in the entire 4 GB address space of the device from an external peripheral,
|
|
* with minimal interruption of the application.
|
|
*
|
|
* Related Files
|
|
* - reg_dmm.h
|
|
* - dmm.h
|
|
* - dmm.c
|
|
* @addtogroup DMM
|
|
* @{
|
|
*/
|
|
/* DMM Interface Functions */
|
|
|
|
void dmmInit(void);
|
|
|
|
/**@}*/
|
|
#endif
|