unify code format

This commit is contained in:
michael 2020-09-15 11:34:29 +08:00
parent dd36771801
commit 93bcc2e0d2

View File

@ -24,23 +24,23 @@ extern unsigned char __bss_end;
/* /*
* General PM Configuration Register * General PM Configuration Register
*/ */
#define PMCON_BASE (APB_BASE | (0x7 << 12)) #define PMCON_BASE (APB_BASE | (0x7 << 12))
/* /*
* Power Management1 Configuration Registers * Power Management1 Configuration Registers
*/ */
#define PM1_BASE (PMCON_BASE + 0x0C) #define PM1_BASE (PMCON_BASE + 0x0C)
#define PM1_STS HWREG32(PM1_BASE) #define PM1_STS HWREG32(PM1_BASE)
#define PM1_EN HWREG32(PM1_BASE + 0x04) #define PM1_EN HWREG32(PM1_BASE + 0x04)
#define PM1_CNT HWREG32(PM1_BASE + 0x08) #define PM1_CNT HWREG32(PM1_BASE + 0x08)
/* /*
* Watch Dog Configuration Registers * Watch Dog Configuration Registers
*/ */
#define WDT_BASE (PMCON_BASE + 0x30) #define WDT_BASE (PMCON_BASE + 0x30)
#define WDT_EN HWREG32(WDT_BASE) #define WDT_EN HWREG32(WDT_BASE)
#define WDT_SET HWREG32(WDT_BASE + 0x04) #define WDT_SET HWREG32(WDT_BASE + 0x04)
#define WDT_TIMER HWREG32(WDT_BASE + 0x08) #define WDT_TIMER HWREG32(WDT_BASE + 0x08)
void rt_hw_board_init(void); void rt_hw_board_init(void);