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.
61 lines
2.0 KiB
C
61 lines
2.0 KiB
C
/** @file reg_stc.h
|
|
* @brief STC Register Layer Header File
|
|
* @date 23.May.2013
|
|
* @version 03.05.01
|
|
*
|
|
* This file contains:
|
|
* - Definitions
|
|
* - Types
|
|
* .
|
|
* which are relevant for the System driver.
|
|
*/
|
|
|
|
/* (c) Texas Instruments 2009-2013, All rights reserved. */
|
|
|
|
#ifndef __REG_STC_H__
|
|
#define __REG_STC_H__
|
|
|
|
#include "sys_common.h"
|
|
|
|
/* USER CODE BEGIN (0) */
|
|
/* USER CODE END */
|
|
|
|
/* Stc Register Frame Definition */
|
|
/** @struct stcBase
|
|
* @brief STC Base Register Definition
|
|
*
|
|
* This structure is used to access the STC module registers.
|
|
*/
|
|
/** @typedef stcBASE_t
|
|
* @brief STC Register Frame Type Definition
|
|
*
|
|
* This type is used to access the STC Registers.
|
|
*/
|
|
typedef volatile struct stcBase
|
|
{
|
|
uint32 STCGCR0; /**< 0x0000: STC Control Register 0 */
|
|
uint32 STCGCR1; /**< 0x0004: STC Control Register 1 */
|
|
uint32 STCTPR; /**< 0x0008: STC Self-Test Run Timeout Counter Preload Register */
|
|
uint32 STCCADDR; /**< 0x000C: STC Self-Test Current ROM Address Register */
|
|
uint32 STCCICR; /**< 0x0010: STC Self-Test Current Interval Count Register */
|
|
uint32 STCGSTAT; /**< 0x0014: STC Self-Test Global Status Register */
|
|
uint32 STCFSTAT; /**< 0x0018: STC Self-Test Fail Status Register */
|
|
uint32 CPU1_CURMISR3; /**< 0x001C: STC CPU1 Current MISR Register */
|
|
uint32 CPU1_CURMISR2; /**< 0x0020: STC CPU1 Current MISR Register */
|
|
uint32 CPU1_CURMISR1; /**< 0x0024: STC CPU1 Current MISR Register */
|
|
uint32 CPU1_CURMISR0; /**< 0x0028: STC CPU1 Current MISR Register */
|
|
uint32 CPU2_CURMISR3; /**< 0x002C: STC CPU1 Current MISR Register */
|
|
uint32 CPU2_CURMISR2; /**< 0x0030: STC CPU1 Current MISR Register */
|
|
uint32 CPU2_CURMISR1; /**< 0x0034: STC CPU1 Current MISR Register */
|
|
uint32 CPU2_CURMISR0; /**< 0x0038: STC CPU1 Current MISR Register */
|
|
uint32 STCSCSCR; /**< 0x003C: STC Signature Compare Self-Check Register */
|
|
} stcBASE_t;
|
|
|
|
#define stcREG ((stcBASE_t *)0xFFFFE600U)
|
|
|
|
/* USER CODE BEGIN (1) */
|
|
/* USER CODE END */
|
|
|
|
|
|
#endif
|