How to Add IAR and Keil ARM Compilers to e² Studio

How to Add IAR and Keil ARM Compilers to e² Studio

Follow+Star Public Account, don’t miss out on exciting content Source | Renesas Embedded Encyclopedia e2 studio is an integrated development environment (IDE) for Renesas MCUs that can configure and generate initialization code with one click and compile to create executable files.This development environment is based on the globally widely used Eclipse platform, and e2 studio … Read more

Renesas IDE e² Studio User Guide: Project Generation, Debugging & Simulation (1) RX Series MCU

Renesas IDE e² Studio User Guide: Project Generation, Debugging & Simulation (1) RX Series MCU

Table of Contents 1 Generating Project Files 2 Using Smart Configuration to Generate Sample Programs 3 Debugging & Simulation Generating Project Files Step 1 Select “File” → “New” → “Renesas C/C++ Project” → “Renesas RX”. The “Templates for Renesas RX Project” dialog will pop up. Step 2 Select “Renesas CC-RX C/C++ Executable Project”. GCC is … Read more

Quick Start Guide for Cortex-M85 Microcontroller

Quick Start Guide for Cortex-M85 Microcontroller

Follow+Star Public Account, don’t miss out on exciting content Author | strongerHuang WeChat Official Account | strongerHuang In April 2022, Arm launched the all-new MCU-level core Cortex-M85. As of now (February 2024), Cortex-M85 is the latest and most powerful Cortex-M core. In October 2023, Renesas Electronics launched the industry’s first MCU based on the Cortex-M85 … Read more

RA MCU Testing Guide | Unboxing and Serial Output Implementation of the RA2L1 Development Board

RA MCU Testing Guide | Unboxing and Serial Output Implementation of the RA2L1 Development Board

#RA MCU Testing Guide A new topic has arrived! After saying goodbye to the PWM waveform rhythm, this time we will focus on the indispensable “information bridge” – #Serial Communication. The Renesas Embedded Encyclopedia will guide everyone to explore the configuration and data transmission of serial communication step by step based on the RA-Eco-RA2L1 development … Read more

A Method for Absolute Memory Address Location in MCUs

A Method for Absolute Memory Address Location in MCUs

Follow+Star Public Account Number, don’t miss out on exciting contentSource | Renesas Embedded EncyclopediaIn a previous article titled “How to Add Version Information to MCU Projects?” we used absolute addresses: #define VERINFO_ADDR_BASE (0x0800FF00) // Address for storing FLASH const char Software_Ver[] __attribute__((at(VERINFO_ADDR_BASE + 0x00))) = "Software: 1.0.0"; const char Compiler_Date[] __attribute__((at(VERINFO_ADDR_BASE + 0x40))) = "Date: … Read more

Renesas RA8 Series Tutorial | Implementing RTC Real-Time Clock Function Based on e2s

Renesas RA8 Series Tutorial | Implementing RTC Real-Time Clock Function Based on e2s

RTC: Real Time Clock. In previous projects, an external clock chip was often used. With the growth of demand and technological advancements, many MCUs now integrate the RTC (Real Time Clock) module internally.This article describes the usage of the RTC module in conjunction with the e2 studio development environment and the RA8D1 microcontroller. Preparation 1 … Read more

Building the Renesas MCU Development Environment: A Pitfall Experience

Building the Renesas MCU Development Environment: A Pitfall Experience

There are many reasons for writing this post, the biggest reason being that the Renesas development environment is indeed a bit troublesome. Developing with Renesas MCUs can be quite challenging, and I encountered many pitfalls while exploring on my own, so I need to document this.I got in touch with Renesas because it has become … Read more

Renesas RA8 Series Tutorial | Methods to Run RTOS on RA8 Based on e2s

Renesas RA8 Series Tutorial | Methods to Run RTOS on RA8 Based on e2s

Following the previous article titled “Renesas RA8 Series Tutorial | Configuration of RA8 Serial Output Based on e2s“, today we will teach you how to quickly set up a FreeRTOS project.In the past, software tools were not as mature, and setting up a FreeRTOS project required manual porting step by step. Many users complained that … Read more