Renesas Electronics MCU and MPU Product Line to Support Microsoft Visual Studio Code

Publisher:EE小广播Latest update time:2023-08-01 Source: EEWORLD Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

Customers can now design and debug software for Renesas embedded processors in VS Code, complementing Renesas’ own e2 Studio IDE


image.png


Beijing, China, August 1, 2023 - Renesas Electronics, a global supplier of semiconductor solutions, today announced that its customers can now use Microsoft® Visual Studio Code (VS Code) to develop for the full range of Renesas microcontrollers (MCUs) and microprocessors (MPUs) . Renesas has developed tool extensions for all of its embedded processors and published them on the Microsoft VS Code website, enabling a large number of designers who are accustomed to using this popular integrated development environment (IDE) and code editor to work in their familiar development environment.


VS Code IDE simplifies and accelerates code editing across multiple platforms and operating systems. By providing support for VS Code, Renesas now enables more designers to create efficient embedded solutions using Renesas products. VS Code complements Renesas' own powerful and flexible e2 studio IDE, which is used by thousands of designers around the world.


Renesas now supports customers using Visual Studio Code to develop and debug embedded software for its 16-bit RL78 and 32-bit RA, RX, and RH850 MCUs, as well as 64-bit RZ MPUs and R-Car family SoCs. Renesas embedded processors target applications such as automotive, IoT, industrial automation, home appliances, and healthcare.


“As a global MCU supplier, Renesas has a large and loyal customer base, many of which develop applications using our powerful e2 studio IDE,” said Akiya Fukui, Vice President and Head of the Software Development Division at Renesas. “By providing support for VS Code, more designers will be able to develop embedded applications using Renesas processors.”


“We welcome Renesas, a leader in the embedded processor market, to the Visual Studio Code community,” said Marc Goodner, Principal Product Manager, Microsoft . “The millions of developers using VS Code can now access Renesas’ broad and highly productive MCU and MPU product line.”


Users can download VS Code for free, including access to the source code. They can create a source code repository with the Github pull request extension, and then use VS Code to view and edit the source code. They can also take advantage of evolving extensions and use a simple user interface or a flexible command interface.


Availability


The tool extensions for Renesas MCUs and MPUs are available today on the Microsoft VS Code website.


Advantages of Renesas MCU


As a world-leading MCU product supplier, Renesas Electronics ships more than 3.5 billion units annually, of which about 50% are used in the automotive field, and the rest are used in industries, the Internet of Things, data centers, and communication infrastructure. Renesas Electronics has a wide range of 8-bit, 16-bit, and 32-bit product portfolios, and is an excellent 16-bit and 32-bit MCU supplier in the industry. The products it provides have excellent quality, efficiency, and performance. At the same time, as a trusted supplier, Renesas Electronics has decades of experience in designing smart and secure MCUs, and has a dual-line production model, industry-leading MCU process technology, and a large ecosystem consisting of more than 200 partners.


Reference address:Renesas Electronics MCU and MPU Product Line to Support Microsoft Visual Studio Code

Previous article:Rejecting involution, GigaDevice flexes its muscles at the Munich Shanghai Electronics Show
Next article:Xu Jie explains GigaDevice’s construction of RISC-V ecosystem

Recommended ReadingLatest update time:2024-11-16 19:36

Features of PIC microcontroller and precautions in design and application
The PIC series 8-bit single-chip microcomputer (RISC microcontroller) developed by Microchip Technology Inc. of the United States, especially the microcontroller with built-in second-generation Flash memory (40-year storage life), is unique in terms of rapid application. Due to its ease of use and high reliability, th
[Microcontroller]
Features of PIC microcontroller and precautions in design and application
51 MCU + 74HC138 drive 16 * 96 dot matrix display of Chinese characters Proteus simulation + source code
1 The 6*96 dot matrix simulation schematic is as follows     The MCU source code is as follows: #include reg52.h #define uchar unsigned char #define uint unsigned int #define ulong unsigned long  #define CTRL_PORT P2 #define DATA_PORT P0 #define ADDR_PORT P1 uchar code *p; uchar code zifu ={                 
[Microcontroller]
51 MCU + 74HC138 drive 16 * 96 dot matrix display of Chinese characters Proteus simulation + source code
MCU STM8L051F3xx EEPROM Operation Notes
MCU: STM8L051F3xx EEPROM Address: 0x00 1000 ~ 0x00 10FF, 256 Bytes Simple operation instructions:  EEPROM is write-protected after power-on reset. When writing data to it, it is necessary to unlock and turn off the write protection. The unlocking process is: 1. Write the key 0xAE to FLASH_DUKR for the first time 2
[Microcontroller]
MCU - Serial Port - Code
#include    #include "../delay/delay.h"      /*============================================================                           Serial port initialization   =============================================================*/   void uart_init()   {       SCON = 0x50; //Set the working mode of the serial port
[Microcontroller]
51 MCU Modbus_RTU demonstration source program
Crystal frequency: 22.1184M Modbus RTU can be modified by program The demonstration program is suitable for the minimum system board of the micro-embedded 51 microcontroller. It has been tested on AT89S52 and STC89C52 microcontrollers and can be transplanted to other 51 series microcontrollers. Communication settings
[Microcontroller]
51 MCU Modbus_RTU demonstration source program
51 MCU timer and counter explanation
In real life, such as product counting, speed measurement, time control and many other occasions, the functions of timers and counters are often needed. The 8051 microcontroller has two built-in timers and counters, which can be used to achieve timing and counting functions. Let's learn about the timers and counters i
[Microcontroller]
51 MCU timer and counter explanation
Application of SPMC65P2102A microcontroller as the main control chip of soybean milk machine
1 Introduction At present, people have higher and higher requirements for the quality of life. When people are busy with work, soymilk machine is a new type of household beverage machine. It uses soybean as raw material and directly processes mature hot soybean milk. If sesame, peanuts, almonds and other condiments a
[Microcontroller]
Application of SPMC65P2102A microcontroller as the main control chip of soybean milk machine
Understanding the classification and performance requirements of automotive control chips (MCU) in one article
01 Introduction to control chips Control chips mainly refer to MCU (Microcontroller Unit), which is a microcontroller, also known as a single-chip microcomputer. It appropriately reduces the CPU's main frequency and specifications, and integrates multiple functional modules and interfaces such as memory, t
[Embedded]
Understanding the classification and performance requirements of automotive control chips (MCU) in one article
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号