/*********************************************************************************************************************** * Function Name: R_Systeminit * Description : This function initializes all peripherals used in this demo. * Arguments : None * Return Value : None ***********************************************************************************************************************/ void R_Systeminit(void) { /* Configure port pin assignments */ PIOR = 0x00U; /* Configure the LCD */ R_LCD_Create(); /* Configure system clocks */ R_CGC_Create(); /* Configure ADC */ R_ADC_Create(); /* Configure timer unit 0 */ R_TAU0_Create(); /* Configure the interval timer */ R_IT_Create(); /* Configure RTC */ //R_RTC_Create(); /* Configure external interrupts */ R_INTC_Create(); /* Disable CRC operations */ CRC0CTL = 0x00U; /* Disable RAM and SFR protections */ IAWCTL = 0x00U; /* Disable RAM parity */ RPECTL = 0x80; }
/*********************************************************************************************************************** * Function Name: R_Systeminit * Description : This function initializes every macro. * Arguments : None * Return Value : None ***********************************************************************************************************************/ void R_Systeminit(void) { volatile uint32_t w_count; PIOR0 = 0x00U; PIOR1 = 0x00U; R_CGC_Create(); R_PORT_Create(); R_SAU0_Create(); R_ADC_Create(); R_TAU0_Create(); R_RTC_Create(); R_PCLBUZ0_Create(); R_INTC_Create(); R_TMR_RJ0_Create(); R_TMR_RD0_Create(); IAWCTL = 0x00U; /* Start data flash control */ DFLEN = 1U; for (w_count = 0U; w_count < 6U; w_count++) { NOP(); } /* End data flash control */ }
/*********************************************************************************************************************** * Function Name: R_Systeminit * Description : This function initializes every macro. * Arguments : None * Return Value : None ***********************************************************************************************************************/ void R_Systeminit(void) { PIOR = 0x00U; R_CGC_Get_ResetSource(); R_CGC_Create(); R_PORT_Create(); R_TAU0_Create(); R_INTC_Create(); IAWCTL = 0x00U; }
/*********************************************************************************************************************** * Function Name: R_Systeminit * Description : This function initializes every macro. * Arguments : None * Return Value : None ***********************************************************************************************************************/ void R_Systeminit(void) { PIOR0 = 0x00U; PIOR1 = 0x00U; R_CGC_Get_ResetSource(); R_PORT_Create(); R_CGC_Create(); R_IT_Create(); R_INTC_Create(); CRC0CTL = 0x00U; IAWCTL = 0x00U; PMS = 0x00U; }
/*********************************************************************************************************************** * Function Name: R_Systeminit * Description : This function initializes every macro. * Arguments : None * Return Value : None ***********************************************************************************************************************/ void R_Systeminit(void) { PIOR = 0x00U; R_CGC_Get_ResetSource(); R_PORT_Create(); R_CGC_Create(); R_TAU0_Create(); R_TAU1_Create(); DMAC0_Create(); DMAC1_Create(); DMAC2_Create(); DMAC3_Create(); R_INTC_Create(); R_SAU0_Create(); R_UART1_Create(); CRC0CTL = 0x00U; IAWCTL = 0x00U; }