return to index

Agenda


IDE & Debug tool

Debug & programmer - E2 emulator

Debug & programmer - E2 emulator lite for RL78

IDE – CS+ , suggest for automotive product

IDE – e² studio


User manual : CS+

CS+ User’s Manual

Integrated Development Environment User's Manual: RL78 Debug Tool
back to top


User manual : e² studio

e² studio User’s Manual


Compiler : CC-RL for RL78

Compiler – C Compiler Package for RL78 Family [CC-RL]

*Base on selected IDE , install the related compiler ( RL78 Compiler CC-RL for CS+ or for e² studio)

Compiler Licenses


User manual : CC-RL for RL78

Compiler CC-RL User’s Manual


Smart Configurator main window

IDE plug in – Smart Configurator

*Base on selected IDE , install the related Smart Configurator


Renesas Flash Programmer

Renesas Flash Programmer (Programming GUI)


Create project by CS+ (RL78)

Integrated Development Environment User's Manual: Project Operation
back to top


CS+ (RL78) : main window


CS+ (RL78) : open smart configurator

Open smart configurator from IDE (CS+)

RL78 Smart Configurator User's Guide: CS+
Smart Configurator User's Manual: RL78 API Reference
back to top


CS+ (RL78) : CC-RL options

Integrated Development Environment User's Manual: RL78 Debug Tool
back to top


CS+ (RL78) : Debug Tool options

Select Debug Tool

Integrated Development Environment User's Manual: RL78 Debug Tool
back to top


Smart Config. : main window (RL78)

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : Clock

Select high speed on chip osc:40MHz

If want to enable PLL , select on chip osc: 20MHz

RL78 Smart Configurator User's Guide: CS+
back to top


Enable X1 osc , will use X1 , X2 pin

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : add component

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : Interval Timer

RL78 Smart Configurator User's Guide: CS+
back to top


TAUxx timer difference

TAUxx timer clock source

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Press [Generate Code] in Smart config. will automatically generate driver source code under CS+ project

RL78 Smart Configurator User's Guide: CS+
back to top


Re-build project , will see the build result is complete without error

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Need to manual add interrupt enable and while(1)

BSP_EI();

while(1)
{
}

Need to manual add driver start API , ex :

R_Config_TAU0_0_Start(); 

RL78 Smart Configurator User's Guide: CS+
back to top


Need to manual add include file , to fix warning

#include "r_smc_entry.h"
#include "platform.h"

RL78 Smart Configurator User's Guide: CS+
back to top


Add TIMER interrupt function under

r_Config_TAU0_0_interrupt()

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : Timer delay - interrupt

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : Timer delay - polling (F24@40MHz)

nop delay : wait delay , 1.0562ms

    for (i = 0; i < 2000; i++) 
    {
        __nop();
    }

timer delay : timer delay , 1.007ms @ clock src 2500KHz , fCLK/2^4 , 1ms

example 1:

    R_Config_TAU0_0_Start();
    while(!(TCR00 == 0));
    R_Config_TAU0_0_Stop();

example 2:

    unsigned long tick_count = 0;

    tick_count = 1;
    R_Config_TAU0_0_Start();
    while ((tick_count))
    {
      if (TMIF00 == 1)
      {
        TMIF00 = 0;
        R_Config_TAU0_0_Stop();
        if (--tick_count)
        {
          R_Config_TAU0_0_Start();
        }
      }
    }

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : Generate code

[Generate Code] in Smart configurator , will re-generate driver code every time

RL78 Smart Configurator User's Guide: CS+
back to top


CS+ : driver code

Put custom application code , variable , declaration , between these 2 comment , will merge into driver code when execute [Generate Code] in Smart config

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : GPIO

RL78 Smart Configurator User's Guide: CS+
back to top


Select target GPIO port , to set GPIO input , output

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : GPIO control example

example

P7_bit.no3 = ~P7_bit.no3;

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 F24 example code

https://www.renesas.com/en/products/microcontrollers-microprocessors/rl78-low-power-8-16-bit-mcus/rl78f24-next-generation-actuator-and-sensor-microcontroller

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : external int.

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Add code when trigger external interrupt INTP2

Need to manual add driver start API , ex :

R_Config_INTC_INTP2_Start();

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : I2C

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Read function example :

R_Config_IIC00_Master_Send(,reg,...)
R_Config_IIC00_Master_Receive(,data,...)
Write function example :

R_Config_IIC00_Master_Send(,data,...)

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : I2C(IICA0)

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Read function example :

R_Config_IICA0_Master_Send(,reg,...)
R_Config_IICA0_Master_Receive(,data,...)
Write function example :

R_Config_IICA0_Master_Send(,data,...)

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : SPI (CSI)

RL78 Smart Configurator User's Guide: CS+
back to top


To fix conflict , select other SAU port , each SAU channel only support one function at the same time

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : CSI table for SPI/UART/I2C

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : CPOL/CPHA

CPOL CPHA mode Type
1 1 3 1
0 1 1 2
1 0 2 3
0 0 0 4

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : SPI (CSI)

Need to manual add driver start API , ex :

R_Config_CSI01_Start();

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : UART

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Need to manual add driver start API , ex :

R_Config_UART1_Start();

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : UART , printf redirect

Add printf function
  1. Add include <stdio.h>
  2. Enable library config : C90/C99
  3. redirect putchar function

Ex : redirect putchar in UART0

STMK0 = 1U; /* disable INTST0 interrupt */
SDR00L = (unsigned char)c;
while(STIF0 == 0)
{
}
STIF0 = 0U; /* clear INTST0 interrupt flag */

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : UART tx , rx - polling example

uart1 tx

void UART1_SendByte(int c)
{
    STMK1 = 1U;    /* disable interrupt */
    SDR10L = (unsigned char)c;
    // STIF1 = 0U;    /* clear interrupt flag */  
    while(STIF1 == 0)
    {

    }
    STIF1 = 0U;    /* clear interrupt flag */  
}
void UART1_sendString(unsigned char* str)
{
    while (*str) 
    {
        UART1_SendByte(*str++);
    }
}

uart1 rx

int UART1_Get(void)
{  
    unsigned char c = 0;  
    while (SRIF1 == 0);
    SRIF1 = 0;
    c = SDR11L;
    return c;
}
// 115200 : 1 bytes (10bit) = 0.08ms
// set timer interval delay , clock src 2500KHz , fCLK/2^4 , 1ms
int boot_UART1_Get_withTimeOut(unsigned long timeout, unsigned char *data)
{
    unsigned long tick_count;

    tick_count = timeout;
    R_Config_TAU0_0_Start();

    /* wait for a byte to arrive */
    while ((SRIF1 == 0) && (tick_count))
    {
      if (TMIF00 == 1)
      {
        TMIF00 = 0;
        R_Config_TAU0_0_Stop();
        if (--tick_count)
        {
          R_Config_TAU0_0_Start();
        }
      }
    }

    if (tick_count == 0)
    {
      *data = '0';
      return FALSE;
    }

    *data=(uint8_t) SDR11L;
    SRIF1 = 0;


    return TRUE;
}

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : PWM

The PWM (pulse width modulation) output function is timer that generate multiple PWM outputs by using a master and multiple slave channels.
The pulse cycle (frequency) is set in the master channel.
The pulse width (duration) is set in the slave channel.

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : PWM formula

MCU clock src : 40M ,
clock div : 40M / 2^6 = 625K Hz ,
target freq : 100Hz = 10000 us

period : 1/100 (which is 10000us) = (val_m + 1 ) * (1/ 625K)

=> val_m : 625K/100 – 1 = 6250 – 1 = 6249 (0x1869)

duty(%) = val_s / (val_m + 1) *100 , 50/100 = val_s/(val_m + 1)
=> val_s = (1/2)*6250 = 3125 (0xC35)

duty(%) = val_s / (val_m + 1) *100 , 75/100 = val_s/(val_m + 1)
=> val_s = (3/4)*6250 = 4687.5 (0x1250)

RL78 Smart Configurator User's Guide: CS+
back to top


Need to manual add driver start API , ex :

R_Config_TAU0_2_Start();

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : ADC

RL78 Smart Configurator User's Guide: CS+
back to top


RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : ADC sampling

RL78 Smart Configurator User's Guide: CS+
back to top


Smart Config. : ADC driver

example :

static void __near r_Config_S12AD0_interrupt(void)
{
/* Start user code for r_Config_S12AD0_interrupt. Do not edit comment generated here */
    ADC_Process_in_IRQ();
/* End user code. Do not edit comment generated here */
}

void ADC_Process_in_IRQ(void)
{
    FLAG_PROJ_TRIG_ADC_CH = 1;
}

void GetADC(unsigned char ch)
{
    unsigned short tmp_buffer = 0;

    FLAG_PROJ_TRIG_ADC_CH = 0;
    R_Config_S12AD0_Start();
    while(!FLAG_PROJ_TRIG_ADC_CH);
    R_Config_S12AD0_Get_ValueResult((e_ad_channel_t) ch,&tmp_buffer);
    R_Config_S12AD0_Stop();
    FLAG_PROJ_TRIG_ADC_CH = 0;

    adc_buffer[ch] = tmp_buffer;    
}

RL78 Smart Configurator User's Guide: CS+
back to top


CS+ : Add root path in Path Edit

add root path under project to fix compile error issue

.\
.

RL78 Smart Configurator User's Guide: CS+
back to top


CS+ : Add main loop

Need to manual add enable interrupt

BSP_EI();
Need to manual add main loop , ex :

while(1)
{
}

RL78 Smart Configurator User's Guide: CS+
back to top


If not add while loop under main code , program will stop at exit in csstart.asm

RL78 Smart Configurator User's Guide: CS+
back to top


CS+ : entry debug mode

Make sure [DISCONNECT] CS+ project before REMOVE DEBUGGER tool

download program after rebuild

debug function



Integrated Development Environment User's Manual: RL78 Debug Tool
back to top


Renesas Flash Programmer

Renesas Flash Programmer V*.** Flash memory programming softwareUser's Manual
back to top


Tips : Convert to Hex


Tips : Emulator power on MCU


Tips : map file display

Function address
size display
location assignment
Code size
RAM size display

variable place address (SRAM)

function place address (FLASH)

section size display in map file


Tips : section message display

Display section message


Tips : section size display in output window


Tips : Backup times (generate code)


Tips : section define modify


Tips : section define (const)

ADD [privateData.const] in Section Settings
1. Select on [.data] in Section
2. Select [Add]
3. Key in [privateData.const]

item note
data variables with initial value
bss variables with no initial value
text program code
const constant data

Code assignment example

CC-RL Compiler User's Manual
back to top


Tips : section define (data)

ADD [privateData.data] in Section Settings
1. Select on [.data] in Section
2. Select [Add]
3. Key in [privateData.data]

item note
data variables with initial value
bss variables with no initial value
text program code
const constant data

Code assignment example

CC-RL Compiler User's Manual
back to top


Tips : section define (bss)

ADD [privateData.bss] in Section Settings
1. Select on [.bss] in Section
2. Select [Add]
3. Key in [privateData.bss]

item note
data variables with initial value
bss variables with no initial value
text program code
const constant data

Code assignment example

CC-RL Compiler User's Manual
back to top


Tips : section define (not assigned address)

New add custom define section as below
Also able to define the address base on application

Code assignment example

check the address in map file

CC-RL Compiler User's Manual
back to top


Tips : section define (assigned address)

New add custom define section as the capture
Also able to define the address base on application

Code assignment example

check the address in map file

CC-RL Compiler User's Manual
back to top


Tips : section allocation , size

CC-RL Compiler User's Manual
back to top


Tips : project split

Use [ Build Mode Setting ] , to split different macro in different project setting if necessary

Project split example , modify the projec name

Add the macro define for extra project

CC-RL Compiler User's Manual
back to top


Tips : E1203124

[Direct Error Cause] Writing to the on-chip debug reserved area is prohibited.(address: 0x00000002)(E1203124)

how to fix

CC-RL Compiler User's Manual
back to top