return to index

Agenda





code base : polling

#define ENABLE_UART_BL                                  (1)
#define ENALBE_IICA0_BL                                 (0)

code base : interrupt

#define ENABLE_UART_PRINTF                      (1)
#define ENABLE_UART_BL                          (1)

#define ENALBE_TIMER_TAU0_1_IRQ                 (1)

#define ENALBE_IICA0_BL                         (0)
#if ENALBE_IICA0_BL
#define ENALBE_IICA0_BL_USE_IRQ                 (1)
#endif
Key point


Flash architecture

MCU flash will split to Boot area (boot code) and Flash area (app code)

How to Divide Boot and Flash Areas


Scenario : Boot area (boot code)

xmodem

I2C


Scenario : Flash area (app code)



Project : boot code/app code modifictaion - ftable.inc


FLASH_TABLE       .EQU  0x5000 
INTERRUPT_OFFSET  .EQU  0x100 

RL78 const size
F24 0x5000
F23 0x3000
F13 0x2000
G15 0x800
G16 0x800

RL78 F24

RL78 F23

RL78 F13

RL78 G15

RL78 G16

How to Divide Boot and Flash Areas


Project : boot code modifictaion - cstart.asm

refer to How to Divide Boot and Flash Areas :
3.1.1 Modifying the startup routine (cstart.asm)

(1)
include ftable.inc

(2)
comment out conditional check

(3)
modify the section name

(4)
comment out conditional check and assembly instructions

(5)
modify main function name (boot_main)
add branch instructions : FALSH_TABLE

(6)
comment out .const section

(7)
modify bsp_init_system function name

(8)
modify hardware init function name (boot_hdwinit)

(9)
increase bss size to 0x500


(10)
add ram flag section

  .SECTION .boot_info, BSS
  .L_section_boot_info:

(11)
add code flash library section

  .SECTION RFD_DATA_nR, DATA
  .SECTION RFD_CMN_fR, TEXTF
  .SECTION RFD_CF_fR, TEXTF
  .SECTION SMP_CMN_fR, TEXTF
  .SECTION SMP_CF_fR, TEXTF

	; copy RFD external variables having initial value (near)
	MOV	ES,#HIGHW(STARTOF(RFD_DATA_n))
	MOVW	BC,#LOWW(SIZEOF(RFD_DATA_n))
	BR	$.L2_RFD_DATA
.L1_RFD_DATA:
	DECW	BC
	MOV	A,ES:LOWW(STARTOF(RFD_DATA_n))[BC]
	MOV	LOWW(STARTOF(RFD_DATA_nR))[BC],A
.L2_RFD_DATA:
	CLRW	AX
	CMPW	AX,BC
	BNZ	$.L1_RFD_DATA


	; copy code to RAM (RFD_CMN)
	MOV	C,#HIGHW(STARTOF(RFD_CMN_f))
	MOVW	HL,#LOWW(STARTOF(RFD_CMN_f))
	MOVW	DE,#LOWW(STARTOF(RFD_CMN_fR))
	BR	$.L12_TEXT
.L11_TEXT:
	MOV	A,C
	MOV	ES,A
	MOV	A,ES:[HL]
	MOV	[DE],A
	INCW	DE
	INCW	HL
	CLRW	AX
	CMPW	AX,HL
	SKNZ
	INC	C
.L12_TEXT:
	MOVW	AX,HL
	CMPW	AX,#LOWW(STARTOF(RFD_CMN_f) + SIZEOF(RFD_CMN_f))
	BNZ	$.L11_TEXT

	; copy code to RAM (RFD_CF)
	MOV	C,#HIGHW(STARTOF(RFD_CF_f))
	MOVW	HL,#LOWW(STARTOF(RFD_CF_f))
	MOVW	DE,#LOWW(STARTOF(RFD_CF_fR))
	BR	$.L22_TEXT
.L21_TEXT:
	MOV	A,C
	MOV	ES,A
	MOV	A,ES:[HL]
	MOV	[DE],A
	INCW	DE
	INCW	HL
	CLRW	AX
	CMPW	AX,HL
	SKNZ
	INC	C
.L22_TEXT:
	MOVW	AX,HL
	CMPW	AX,#LOWW(STARTOF(RFD_CF_f) + SIZEOF(RFD_CF_f))
	BNZ	$.L21_TEXT

	; copy code to RAM (SMP_CMN)
	MOV	C,#HIGHW(STARTOF(SMP_CMN_f))
	MOVW	HL,#LOWW(STARTOF(SMP_CMN_f))
	MOVW	DE,#LOWW(STARTOF(SMP_CMN_fR))
	BR	$.L32_TEXT
.L31_TEXT:
	MOV	A,C
	MOV	ES,A
	MOV	A,ES:[HL]
	MOV	[DE],A
	INCW	DE
	INCW	HL
	CLRW	AX
	CMPW	AX,HL
	SKNZ
	INC	C
.L32_TEXT:
	MOVW	AX,HL
	CMPW	AX,#LOWW(STARTOF(SMP_CMN_f) + SIZEOF(SMP_CMN_f))
	BNZ	$.L31_TEXT

	; copy code to RAM (SMP_CF)
	MOV	C,#HIGHW(STARTOF(SMP_CF_f))
	MOVW	HL,#LOWW(STARTOF(SMP_CF_f))
	MOVW	DE,#LOWW(STARTOF(SMP_CF_fR))
	BR	$.L42_TEXT
.L41_TEXT:
	MOV	A,C
	MOV	ES,A
	MOV	A,ES:[HL]
	MOV	[DE],A
	INCW	DE
	INCW	HL
	CLRW	AX
	CMPW	AX,HL
	SKNZ
	INC	C
.L42_TEXT:
	MOVW	AX,HL
	CMPW	AX,#LOWW(STARTOF(SMP_CF_f) + SIZEOF(SMP_CF_f))
	BNZ	$.L41_TEXT


boot code : Compare below file to see the difference
after modification :
RL78_F24_Boot_loader_UART\cstart.asm
https://github.com/released/RL78_F24_Boot_loader_UART/blob/main/cstart.asm

code flash :
RL78_F24_Boot_loader_UART\RFDRL78T02\sample\RL78_F24\CF\CCRL\source\cstart.asm

smart configurator original file :
RL78_F24_Boot_loader_UART\src\smc_gen\r_bsp\mcu\all\cstart.asm

How to Divide Boot and Flash Areas


Project : boot code modifictaion - stkinit.asm

refer to How to Divide Boot and Flash Areas :
3.1.2 Modifying hdwinit.asm and stkinit.asm

How to Divide Boot and Flash Areas


Project : boot code modifictaion - project tree

How to Divide Boot and Flash Areas


Project : boot code modifictaion - add CODE FLASH library


R_RFD_FAR_FUNC e_sample_ret_t Sample_CodeFlashControl_Erase(uint32_t i_u32_start_addr)
{
    /* Local variable definition */
    e_rfd_ret_t    l_e_rfd_ret_status;
    e_sample_ret_t l_e_sam_ret_status;
    e_sample_ret_t l_e_sam_ret_value;
    bool           l_e_sam_error_flag;
    // uint16_t       l_u16_count;
    uint16_t       l_u16_block_number;
    // uint32_t       l_u32_check_write_data_addr;
    
    /* Set local variables */
    l_e_sam_ret_value           = SAMPLE_ENUM_RET_STS_OK;
    l_e_sam_error_flag          = false;
    
    /* This expression (actual block number) never exceeds the range of casting uint16_t */
    l_u16_block_number          = (uint16_t)(i_u32_start_addr >> SAMPLE_VALUE_U08_SHIFT_ADDR_TO_BLOCK_CF);
    // l_u32_check_write_data_addr = i_u32_start_addr;
    
    /******************************************************************************************************************
     * Set the code flash programming mode
     *****************************************************************************************************************/
    l_e_rfd_ret_status = R_RFD_SetFlashMemoryMode(R_RFD_ENUM_FLASH_MODE_CODE_PROGRAMMING);
    
    if (R_RFD_ENUM_RET_STS_OK != l_e_rfd_ret_status)
    {
        l_e_sam_error_flag = true;
        l_e_sam_ret_value  = SAMPLE_ENUM_RET_ERR_MODE_MISMATCHED;
    }
    else
    {
        /* No operation */
    }
    
    /******************************************************************************************************************
     * BLANKCHECK -> ERASE
     *****************************************************************************************************************/
    if (false == l_e_sam_error_flag)
    {
        /* BLANKCHECK (1 block) */
        R_RFD_BlankCheckCodeFlashReq(l_u16_block_number);
        l_e_sam_ret_status = Sample_CheckCFDFSeqEnd();
        
        if (SAMPLE_ENUM_RET_ERR_ACT_BLANKCHECK == l_e_sam_ret_status)
        {
            /* ERASE (1 block) */
            R_RFD_EraseCodeFlashReq(l_u16_block_number);
            l_e_sam_ret_status = Sample_CheckCFDFSeqEnd();
            
            if (SAMPLE_ENUM_RET_STS_OK != l_e_sam_ret_status)
            {
                l_e_sam_error_flag = true;
                l_e_sam_ret_value  = SAMPLE_ENUM_RET_ERR_CMD_ERASE;
            }
            else
            {
                /* No operation */
            }
        }
        else if (SAMPLE_ENUM_RET_STS_OK != l_e_sam_ret_status)
        {
            l_e_sam_error_flag = true;
            l_e_sam_ret_value  = SAMPLE_ENUM_RET_ERR_CMD_BLANKCHECK;
        }
        else
        {
            /* No operation */
        }
    }
    else /* true == l_e_sam_error_flag */
    {
        /* No operation */
    }
        
    /******************************************************************************************************************
     * Set non-programmable mode
     *****************************************************************************************************************/
    l_e_rfd_ret_status = R_RFD_SetFlashMemoryMode(R_RFD_ENUM_FLASH_MODE_CODE_TO_NONPROGRAMMABLE);
    
    if (R_RFD_ENUM_RET_STS_OK != l_e_rfd_ret_status)
    {
        l_e_sam_error_flag = true;
        l_e_sam_ret_value  = SAMPLE_ENUM_RET_ERR_MODE_MISMATCHED;
    }
    else
    {
        /* No operation */
    }
        
    return (l_e_sam_ret_value);
}
R_RFD_FAR_FUNC e_sample_ret_t Sample_CodeFlashControl_SingleWrite(uint32_t i_u32_start_addr,
                                                      uint8_t __near * inp_u08_write_data)
{
    /* Local variable definition */
    e_rfd_ret_t    l_e_rfd_ret_status;
    e_sample_ret_t l_e_sam_ret_status;
    e_sample_ret_t l_e_sam_ret_value;
    bool           l_e_sam_error_flag;
    uint16_t       l_u16_count = 0;
    // uint16_t       l_u16_block_number;
    // uint32_t       l_u32_check_write_data_addr;
    
    /* Set local variables */
    l_e_sam_ret_value           = SAMPLE_ENUM_RET_STS_OK;
    l_e_sam_error_flag          = false;
    
    /* This expression (actual block number) never exceeds the range of casting uint16_t */
    // l_u16_block_number          = (uint16_t)(i_u32_start_addr >> SAMPLE_VALUE_U08_SHIFT_ADDR_TO_BLOCK_CF);
    // l_u32_check_write_data_addr = i_u32_start_addr;
    
    /******************************************************************************************************************
     * Set the code flash programming mode
     *****************************************************************************************************************/
    l_e_rfd_ret_status = R_RFD_SetFlashMemoryMode(R_RFD_ENUM_FLASH_MODE_CODE_PROGRAMMING);
    
    if (R_RFD_ENUM_RET_STS_OK != l_e_rfd_ret_status)
    {
        l_e_sam_error_flag = true;
        l_e_sam_ret_value  = SAMPLE_ENUM_RET_ERR_MODE_MISMATCHED;
    }
    else
    {
        /* No operation */
    }
   
    /******************************************************************************************************************
     * WRITE
     *****************************************************************************************************************/
    if (false == l_e_sam_error_flag)
    {
        // for (l_u16_count = 0u; l_u16_count < i_u16_write_data_length; l_u16_count += 4u)
        {
            // R_RFD_WriteCodeFlashReq(i_u32_start_addr + l_u16_count, &inp_u08_write_data[l_u16_count]);
            R_RFD_WriteCodeFlashReq(i_u32_start_addr , &inp_u08_write_data[l_u16_count]);
            l_e_sam_ret_status = Sample_CheckCFDFSeqEnd();
            
            if (SAMPLE_ENUM_RET_STS_OK != l_e_sam_ret_status)
            {
                l_e_sam_error_flag = true;
                l_e_sam_ret_value  = SAMPLE_ENUM_RET_ERR_CMD_WRITE;
                // break;
            }
            else
            {
                /* No operation */
            }
        }
    }
    else /* true == l_e_sam_error_flag */
    {
        /* No operation */
    }
        
    /******************************************************************************************************************
     * Set non-programmable mode
     *****************************************************************************************************************/
    l_e_rfd_ret_status = R_RFD_SetFlashMemoryMode(R_RFD_ENUM_FLASH_MODE_CODE_TO_NONPROGRAMMABLE);
    
    if (R_RFD_ENUM_RET_STS_OK != l_e_rfd_ret_status)
    {
        l_e_sam_error_flag = true;
        l_e_sam_ret_value  = SAMPLE_ENUM_RET_ERR_MODE_MISMATCHED;
    }
    else
    {
        /* No operation */
    }
    
    return (l_e_sam_ret_value);
}


Renesas Flash Driver RL78 Type 02 User’s Manual


Project : boot code modifictaion - add CRC compare (1)




Project : boot code modifictaion - add CRC compare (2)


CRC in app code last 4 bytes will be added after compile at app code project by use SRecord tool


Project : boot code modifictaion - use smart config tool to generate driver







Project : boot code modifictaion - boot_main.c


Project : boot code modifictaion - I2C command flow





Project : boot code modifictaion - I2C command flow (check_generic_boot_standard_interface)

(0) send initial byte (master)

(1) boot mode check command byte (master)

(1-1) check read status (master)

(2) device inquiry command packet (master)

(2-1) report status about device inquiry command packet (slave)


Project : boot code modifictaion - I2C command flow (read_device_signature)

(3) obtain target device signature (master)


(3-1) report status about obtain target device signature (slave)



Project : boot code modifictaion - I2C command flow (read_area_information)

(4) obtain target device signature (master)


(4-1) report status about obtain target device signature (slave)



Project : boot code modifictaion - I2C command flow (start_device_image_transfer)

(5) erase user code flash area (master)

(5-1) report status about erase user code flash area (slave)

(6) initiate write user code flash area (master)

(6-1) report status about initiate write user code flash area (master)


Project : boot code modifictaion - I2C command flow terminal operation (master & slave)

(1) log message at master : set target image

(2) log message at master : check slave status

(3) log message at master : program binary to slave code flash

(4) log message at slave : erase (RL78 F24)

(5) log message at slave : programming finish (RL78 F24)

(6) code flow at slave : WriteCodeFlash (RL78 F24)

erase per page (1K bytes) , program per 4 bytes


Project : boot code modifictaion - xmodem update flow

below is at xmodem update when g_app_required_update == 1

when trig update flow , will wait for xmodem from PC host

use teraterm , to send file under xmodem

when under transmit binary file

trasmit time , update RL78 F24 app code : 236K

when update app code finish


Project : boot code property modifictaion - E2 lite setting

CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation


Project : boot code property modifictaion - CC-RL Build Tool setting

Common Options

refer to How to Divide Boot and Flash Areas :
3.2.5 Specifying hex file output only to the boot area address range

%BuildModeName%\boot0000_4FFF.hex=0000-4FFF
RL78 const size
F24 0x5000
F23 0x3000
F13 0x2000
G15 0x800
G16 0x800

copy /y/v .\DefaultBuild\RL78_F24_Boot_loader_UART.fsy ..\RL78_F24_Boot_loader_app\

How to Divide Boot and Flash Areas
CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation


Project : boot code property modifictaion - CC-RL Build Tool setting

Compile Options

How to Divide Boot and Flash Areas
CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation


Project : boot code property modifictaion - CC-RL Build Tool setting

Link Options













How to Divide Boot and Flash Areas
CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation
Renesas Flash Driver RL78 Type 02 User’s Manual


Project : boot code property modifictaion - CC-RL Build Tool setting

Hex Output Options

refer to How to Divide Boot and Flash Areas :
3.2.5 Specifying hex file output only to the boot area address range

%BuildModeName%\boot0000_4FFF.hex=0000-4FFF
RL78 const size
F24 0x5000
F23 0x3000
F13 0x2000
G15 0x800
G16 0x800


How to Divide Boot and Flash Areas
CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation
Renesas Flash Driver RL78 Type 02 User’s Manual


Reference - RL78/F23, F24 User’s Manual: Hardware - Input Source List





Project : RL78/F23, F24 User’s Manual: Hardware - Vector Table



Project : boot code/app code modifictaion - ftable.inc


FLASH_TABLE       .EQU  0x5000 
INTERRUPT_OFFSET  .EQU  0x100 

RL78 const size
F24 0x5000
F23 0x3000
F13 0x2000
G15 0x800
G16 0x800

RL78 F24

RL78 F23

RL78 F13

RL78 G15

RL78 G16

How to Divide Boot and Flash Areas


Project : app code modifictaion - cstart.asm

refer to How to Divide Boot and Flash Areas :
4.1.1 Modifying the startup routine (cstart.asm)

(1)
comment out conditional check

(2)
add ram flag section

  .SECTION .boot_info, BSS
  .L_section_boot_info:

(3)
add data flash library section

  .SECTION RFD_DATA_nR, DATA

	; copy RFD external variables having initial value (near)
	MOV	ES,#HIGHW(STARTOF(RFD_DATA_n))
	MOVW	BC,#LOWW(SIZEOF(RFD_DATA_n))
	BR	$.L2_RFD_DATA
.L1_RFD_DATA:
	DECW	BC
	MOV	A,ES:LOWW(STARTOF(RFD_DATA_n))[BC]
	MOV	LOWW(STARTOF(RFD_DATA_nR))[BC],A
.L2_RFD_DATA:
	CLRW	AX
	CMPW	AX,BC
	BNZ	$.L1_RFD_DATA


app code : Compare below file to see the difference
after modification :
RL78_F24_Boot_loader_app\cstart.asm
https://github.com/released/RL78_F24_Boot_loader_app/blob/main/cstart.asm

data flash :
RL78_F24_Boot_loader_app\RFDRL78T02\sample\RL78_F24\DF\CCRL\source\cstart.asm

smart configurator original file :
RL78_F24_Boot_loader_app\src\smc_gen\r_bsp\mcu\all\cstart.asm

How to Divide Boot and Flash Areas


Project : app code modifictaion - ftable.asm

refer to How to Divide Boot and Flash Areas :
4.1.2 Creating a branch table program (ftable.asm)

		.DB4    0xffffffff                      ; INTP13/INTCL	             	;0x0014
		 BR     !!_r_Config_UART0_interrupt_send	; INTST0/INTCSI00/INTIIC00  ;0x0016
		 BR     !!_r_Config_UART0_interrupt_receive	; INTSR0/INTCSI01/INTIIC01 	;0x0018
		.DB4    0xffffffff						; INTTRD0                       ;0x001A
    ...
		.DB4    0xffffffff					    ; INTLIN0STA/INTLIN0	        ;0x0026
		 BR     !!_r_Config_IICA0_interrupt	    ; INTIICA0 		                ;0x0028
		.DB4    0xffffffff                      ; INTP8/INTRTC                  ;0x002A
		.DB4    0xffffffff      				; INTTM00                     	;0x002C
		 BR     !!_r_Config_TAU0_1_interrupt    ; INTTM01                       ;0x002E
		.DB4    0xffffffff                	    ; INTTM02                       ;0x0030
    ...
		.DB4    0xffffffff                      ; INTP10/INTTM03H               ;0x003C
		 BR     !!_r_Config_UART1_interrupt_send	; INTST1/INTCSI10/INTIIC10      ;0x003E
		 BR     !!_r_Config_UART1_interrupt_receive	; INTSR1/INTCSI11/INTIIC11      ;0x0040
		.DB4    0xffffffff					    ; INTTM04                       ;0x0042

How to Divide Boot and Flash Areas


Project : app code modifictaion - fsy file

refer to How to Divide Boot and Flash Areas :
4.2.1 Registering the externally defined symbol file with the project

How to Divide Boot and Flash Areas


Project : app code modifictaion - project tree


Project : app code modifictaion - add DATA FLASH library


Project : app code modifictaion - use smart config tool to generate driver



Project : app code modifictaion - remove static and vect define

refer to How to Divide Boot and Flash Areas :
Do not specify the vector address (vect) with the #pragma interrupt directive in the flash area.




How to Divide Boot and Flash Areas


Project : app code modifictaion - main.c

#define RESET_TO_BOOT_SIGN 0xAA55AA55

#pragma address (reset_to_bootloader = 0x000FF700)
volatile uint32_t reset_to_bootloader;
#pragma address (_no_init_global = 0x000FF710)
unsigned char _no_init_global[RAM_FLAG_MAX];

below is map file result

    if(g_i2c_receive_complete)
    {
        if(0 == memcmp(&iic_buf[0], switch_device_to_boot_mode_cmd, 6))
        {
            R_Config_IICA0_Slave_Send((uint8_t *)response_status_ok, 7);
            while(!g_i2c_transmit_complete);

            reset_to_bootloader = RESET_TO_BOOT_SIGN;
            _reset_by_illegal_memory_access();
        }

        g_i2c_receive_complete = false;
    }

void uart_rcv_process(void)
{
    if (FLAG_PROJ_TRIG_3)
    {
        FLAG_PROJ_TRIG_3 = 0;

        reset_to_bootloader = RESET_TO_BOOT_SIGN;
        printf_tiny("(app)reset_to_bootloader:0x%X",reset_to_bootloader>>16);
        printf_tiny("%X\r\n",reset_to_bootloader&0xFFFF);

        _reset_by_illegal_memory_access();        
    }
}

Project : app code property modifictaion - E2 lite setting

CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation


Project : app code property modifictaion - CC-RL Build Tool setting

Common Options

refer to How to Divide Boot and Flash Areas :
4.2.3 Specifying hex file output only to the flash area address range

%BuildModeName%\flash5000_3FFFF.hex=5000-3FFFF


1backupHex.cmd

# input file
.\DefaultBuild\flash5000_3FFFF.hex -Intel

-crop 0x005000 0x40000

# produce the output file
-Output
.\DefaultBuild\flash5000_3FFFF_backup.hex -Intel


2generateChecksum.cmd

# input file
.\DefaultBuild\flash5000_3FFFF.hex -Intel

-crop 0x5000 0x3FFFC

-crc32-l-e 0x3FFFC		

-crop 0x3FFFC 0x40000
											
-Output 
- 
-HEX_Dump


3generateCRCHex.cmd

# input file
.\DefaultBuild\flash5000_3FFFF.hex -Intel

-crop 0x5000 0x3FFFC

-crc32-l-e 0x3FFFC

-Output
.\DefaultBuild\flash5000_3FFFF_CRC.hex -Intel


4generateCRCBin.cmd

# input file
.\DefaultBuild\flash5000_3FFFF_CRC.hex -Intel

-crop 0x005000 0x40000 -offset -0x005000

# produce the output file
-Output
.\DefaultBuild\flash5000_3FFFF.bin -binary


5generateCRCHexOverlap.cmd

# input file
.\DefaultBuild\flash5000_3FFFF_CRC.hex -Intel

-crop 0x005000 0x40000

# produce the output file
-Output
.\DefaultBuild\flash5000_3FFFF.hex -intel


6generateBootAppHex.cmd

..\RL78_F24_Boot_loader_UART\DefaultBuild\boot0000_4FFF.hex -Intel .\DefaultBuild\flash5000_3FFFF.hex -Intel -o .\boot_app.hex -Intel -Output_Block_Size=16


7generateBootAppBin.cmd

# input file
.\boot_app.hex -Intel

-crop 0x00000 0x40000

# produce the output file
-Output
.\boot_app.bin -binary


use RFP to download whole program : boot_app.bin(boot code + app code)

boot+app binary folder :
RL78_F24_Boot_loader_app\boot_app.bin

boot code binary folder :
RL78_F24_Boot_loader_UART\DefaultBuild\boot0000_4FFF.hex

app code binary folder :
RL78_F24_Boot_loader_app\DefaultBuild\flash5000_3FFFF.bin
RL78_F24_Boot_loader_app\DefaultBuild\flash5000_3FFFF.hex


Project : app code property modifictaion - CC-RL Build Tool setting

Compile Options

How to Divide Boot and Flash Areas
CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation


Project : app code property modifictaion - CC-RL Build Tool setting

Link Options




refer to How to Divide Boot and Flash Areas :
4.2.2 Specifying the section allocation

RFD_DATA_n 
RFD_CMN_f 
RFD_DF_f 
SMP_CMN_f 
SMP_DF_f 

RFD_DATA_nR 

.data=.dataR
.sdata=.sdataR
RFD_DATA_n=RFD_DATA_nR



How to Divide Boot and Flash Areas
CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation
Renesas Flash Driver RL78 Type 02 User’s Manual


Project : app code property modifictaion - CC-RL Build Tool setting

Hex Output Options

refer to How to Divide Boot and Flash Areas :
4.2.3 Specifying hex file output only to the flash area address range

%BuildModeName%\flash5000_3FFFF.hex=5000-3FFFF

How to Divide Boot and Flash Areas
CC-RL Compiler User's Manual
CS+ User’s Manual: CC-RL Build Tool Operation
Renesas Flash Driver RL78 Type 02 User’s Manual


How to add interrupt at boot code

I2C example
refer to define : ENALBE_IICA0_BL_USE_IRQ in project:RL78_F24_Boot_loader_UART_CRC

add interrupt vect declare in boot code

#pragma interrupt boot_r_Config_IICA0_interrupt(vect=INTIICA0)
void __near boot_r_Config_IICA0_interrupt(void)
{
	if(_no_init_global[RAM_FLAG_INDICATE_BOOT_APP] == 0xAA)   // execute boot code ISR
	{
        if (0U == (IICS0 & _80_IICA_STATUS_MASTER))
        {            
            I2C_Downloader_routine_IRQ();   // r_Config_IICA0_slave_handler();
        }
	}
	if(_no_init_global[RAM_FLAG_INDICATE_BOOT_APP] == 0x55)   //user app ISR address
	{	    	
        if (0U == (IICS0 & _80_IICA_STATUS_MASTER))
        {
            ((void(*)(void))0x5050)();	
        }
	}
}

TIMER example
refer to define : ENALBE_TIMER_TAU0_1_IRQ in project:RL78_F24_Boot_loader_UART_CRC

add interrupt vect declare in boot code

#pragma interrupt boot_r_Config_TAU0_1_interrupt(vect=INTTM01)
void __near boot_r_Config_TAU0_1_interrupt(void)
{
	if(_no_init_global[RAM_FLAG_INDICATE_BOOT_APP] == 0xAA)   // execute boot code ISR
	{
        boot_Timer_1ms_IRQ();
	}
	if(_no_init_global[RAM_FLAG_INDICATE_BOOT_APP] == 0x55)   //user app ISR address
	{	    	
        ((void(*)(void))0x505C)();
	}
}