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.
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
/** @file reg_dcc.h
|
|
* @brief DCC Register Layer Header File
|
|
* @date 23.May.2013
|
|
* @version 03.05.01
|
|
*
|
|
* This file contains:
|
|
* - Definitions
|
|
* - Types
|
|
* - Interface Prototypes
|
|
* .
|
|
* which are relevant for the DCC driver.
|
|
*/
|
|
|
|
/* (c) Texas Instruments 2009-2013, All rights reserved. */
|
|
|
|
#ifndef __REG_DCC_H__
|
|
#define __REG_DCC_H__
|
|
|
|
#include "sys_common.h"
|
|
|
|
|
|
|
|
/* USER CODE BEGIN (0) */
|
|
/* USER CODE END */
|
|
|
|
/* Dcc Register Frame Definition */
|
|
/** @struct dccBase
|
|
* @brief DCC Base Register Definition
|
|
*
|
|
* This structure is used to access the DCC module registers.
|
|
*/
|
|
/** @typedef dccBASE_t
|
|
* @brief DCC Register Frame Type Definition
|
|
*
|
|
* This type is used to access the DCC Registers.
|
|
*/
|
|
typedef volatile struct dccBase
|
|
{
|
|
uint32 GCTRL; /**< 0x0000: DCC Control Register */
|
|
uint32 REV; /**< 0x0004: DCC Revision Id Register */
|
|
uint32 CNT0SEED; /**< 0x0008: DCC Counter0 Seed Register */
|
|
uint32 VALID0SEED; /**< 0x000C: DCC Valid0 Seed Register */
|
|
uint32 CNT1SEED; /**< 0x0010: DCC Counter1 Seed Register */
|
|
uint32 STAT; /**< 0x0014: DCC Status Register */
|
|
uint32 CNT0; /**< 0x0018: DCC Counter0 Value Register */
|
|
uint32 VALID0; /**< 0x001C: DCC Valid0 Value Register */
|
|
uint32 CNT1; /**< 0x0020: DCC Counter1 Value Register */
|
|
uint32 CLKSRC1; /**< 0x0024: DCC Counter1 Clock Source Selection Register */
|
|
uint32 CLKSRC0; /**< 0x0028: DCC Counter0 Clock Source Selection Register */
|
|
} dccBASE_t;
|
|
|
|
|
|
/** @def dccREG1
|
|
* @brief DCC1 Register Frame Pointer
|
|
*
|
|
* This pointer is used by the DCC driver to access the dcc2 module registers.
|
|
*/
|
|
#define dccREG1 ((dccBASE_t *)0xFFFFEC00U)
|
|
|
|
|
|
/** @def dccREG2
|
|
* @brief DCC2 Register Frame Pointer
|
|
*
|
|
* This pointer is used by the DCC driver to access the dcc2 module registers.
|
|
*/
|
|
#define dccREG2 ((dccBASE_t *)0xFFFFF400U)
|
|
|
|
/* USER CODE BEGIN (1) */
|
|
/* USER CODE END */
|
|
|
|
|
|
#endif
|