Creating a basic GUI application with Synergy and GUIX SK-S7G2

Size: px
Start display at page:

Download "Creating a basic GUI application with Synergy and GUIX SK-S7G2"

Transcription

1 Creating a basic GUI application with Synergy and GUIX SK-S7G2 LAB PROCEDURE Description: The objective of this lab session is to detail the process of creating an embedded graphics user interface, starting with getting the display hardware configured, then outputting an image to the display, adding data output, and user input through the touch panel. Lab Objectives 1. Learn how to set up a display 2. Create a splash screen using GUIX Studio 3. Integrate GUIX elements into a Synergy project 4. Set up and test a basic Graphical User Interface (GUI) Skill Level 1. Familiarity with e2studio and debuggers 2. Project creation with Synergy SSP configuration tool Lab Materials Please verify you have the following materials at your lab station. e2 studio v GNU Tools for ARM (gcc-arm-noneeabi-4_9-2015q ) Synergy SSP v1.2.0 with current license GUIX Studio v Synergy SK-S7G2 Starter Kit board USB Type A to Micro-B cable Time to Complete Lab 100 Minutes Lab Sections 1 Project Creation LCD Panel configuration LCD Panel interface setup Build a GUI using GUIX Studio Adding GUIX Framework and Drivers Add a Data Output Window to the GUI Add Messaging Framework and Touch Drivers Add an Input Button to the GUI Creating a basic GUI application with Synergy and GUIX Page 1 of 28

2 1 Project Creation Overview: In this lab section, we will create a thread that initializes the GUI system and handles user events. Procedural Steps: LAB PROCEDURE Launch e2 studio and specify a Workspace location that does not yet exist (empty workspace) such as C:\Workspace\synergy_gui_lab Note: If you specify another workspace path than shown, be sure to adjust for that later in the lab where the path is referenced. Close the Welcome window or click Workbench. In e 2 studio, go to File > New. Select Synergy C Project. The Project Configuration dialog will appear. Creating a basic GUI application with Synergy and GUIX Page 2 of 28

3 In the Project Configuraton window name the project my_gui_app Note: Throughout this lab we will name your newly created components with "my_" prefix to easily distinguish them from Synergy system labels. If a license has not yet been specified, click the Change license file link, then, then Browse as shown below to select a license file. Creating a basic GUI application with Synergy and GUIX Page 3 of 28

4 Ensure that GCC ARM Embedded is selected as the Toolchain, then click Next. Select S7G2 SK in the Board drop-down list and leave the other options as default. Click Next. Press the radio button BSP in the Project Template Selection menu. Click Finish. e 2 studio will create the S7G2-SK BSP project for you. Select the Threads tab on and click the New Thread button. Creating a basic GUI application with Synergy and GUIX Page 4 of 28

5 You will find a thread named New Thread appeared in the Threads pane. Change the Name of the thread to My GUI Thread in the Properties view. Change the Symbol of the thread to my_gui_thread as well and change the priority to 10. Click the Generate Project Content button on the Synergy Configuration view to generate the thread. You should find the following files have been generated by the Synergy Configurator. Build the project and make sure there are no errors. Creating a basic GUI application with Synergy and GUIX Page 5 of 28

6 2 LCD Panel configuration LAB PROCEDURE Overview: In this lab section, we will investigate the hardware settings for the LCD panel and configure the display driver to make sure the low level layers of the GUI system work properly. Procedural Steps: Click My GUI Thread in the Threads pane and confirm it gets highlighted. Then click the New Stack button in the My GUI Thread Stacks pane to select GUIX on gx from the X-Ware->GUIX drop-down. Click on the g_display0 Display Driver on r_glcd in the My GUI Thread Stacks pane and the configuration parameters are shown in the Properties view. Creating a basic GUI application with Synergy and GUIX Page 6 of 28

7 Edit the Display Driver properties for the LCD panel for the SK-S7G2 board as shown. This time we should only need to change the yellow highlighted properties in Table 1, however check the other settings just in case they got changed. Table 1 Synergy Configuration settings for Display Driver on r_glcd Type Display on GLCD Properties Value Description General Name g_display0 The name of the display device instance (Please use this name for this lab) Name of display callback function to be defined by user NULL The name of the user display interrupt callback function Input Panel clock source select Internal clock Internal GLCDC-generated clock signal Graphics screen1 Graphics screen1 frame buffer name Number of Graphics screen1 frame buffer Section where Graphics screen1 frame buffer allocated Graphics screen1 input horizontal size Graphics screen1 input vertical size Graphics screen1 input horizontal stride Used fb_background The suffix to the frame buffer array name. The full name is defined as [module_name]_[fb_name] in this case, g_display0_fb_background 2 Ping-pong buffer system needs two frame buffers to avoid tearing bss bss (internal SRAM) is used for the frame buffers 256 Width of frame buffer in pixels (must be multiple of 64 bytes, or Height of frame buffer in pixels 256 Length of a row of pixels (in pixel units). Except in rare cases this will always be set the same as horizontal size. Graphics screen1 input format 16bits RGB565 Framebuffer pixel format Graphics screen1 input line Not used descending Graphics screen1 input lines repeat Off Graphics screen1 input lines repeat times is ignored. Graphics screen1 input lines 0 repeat times Graphics screen1 layer 0 coordinate X Graphics screen1 layer 0 coordinate Y Graphics screen1 layer 255 background color alpha Graphics screen1 layer 255 background color Red Graphics screen1 layer 255 background color Green Graphics screen1 layer 255 background color Blue Graphics screen1 layer fading control None Graphics screen1 layer fade speed is ignored. Input - Graphics screen1 layer 0 fade speed Graphics screen2 Not used All the Properties for Graphics screen2 are ignored. Output Horizontal total cycles 320 Total number of active lines on the screen (same as vertical size) Creating a basic GUI application with Synergy and GUIX Page 7 of 28

8 Horizontal active video cycles 240 Total number of active pixels per line (same as horizontal size) Horizontal back porch cycles 6 Horizontal back porch Horizontal sync signal cycles 4 Horizontal sync (Hsync) assertion length Horizontal sync signal polarity Low active Vertical total lines 328 Total number of lines to output (including blanking interval) Vertical active video lines 320 Total number of active lines per frame (same as vertical size) Vertical back porch lines 4 Vertical back porch Vertical sync signal lines 4 Vertical sync (Vsync) assertion length Vertical sync signal polarity Low active Format 16bits RGB565 Output pixel format Endian Little endian Color order RGB Data Enable Signal Polarity High active DE (High active) Sync edge Rising edge Same above Background color alpha 255 channel Background color R channel 0 Background color G channel 0 Background color B channel 0 CLUT Not used CLUT buffer size (don t care) TCON Hsync pin select LCD_TCON2 Hsync signal Vsync pin select LCD_TCON1 Vsync signal DataEnable pin select LCD_TCON0 Data Enable (DE) signal Panel clock division ratio 1/32 Divisor for panel clock Color correction Brightness Off All the brightness settings are ignored. Contrast Off All the contrast settings are ignored. Gamma correction(red) Off All the gamma correction settings for Red are ignored. Gamma correction(green) Off All the gamma correction settings for Green are ignored. Gamma correction(blue) Off All the gamma correction settings for Blue are ignored. Dither Dithering Off All the dither settings are ignored. Misc. Correction Process Order Brightness and Contrast then Gamma Interrupts Line Detect Interrupt Priority Priority 3 Vsync interrupt Underflow 1 Interrupt Priority Priority 3 Generally only caused by bus congestion Underflow 2 Interrupt Priority Disabled Creating a basic GUI application with Synergy and GUIX Page 8 of 28

9 Now click on the g_jpeg_decode0 JPEG Decode Driver on r_jpeg in the My GUI Thread Stacks pane and set the interrupt priorities to 3. Click on the D/AVE 2D Port on sf_tes_2d_drw in the My GUI Thread Stacks pane and set the DRW INT priority to 3. Creating a basic GUI application with Synergy and GUIX Page 9 of 28

10 3 LCD Panel interface setup LAB PROCEDURE Overview: The LCD on the SK-S7G2 has both parallel and serial (SPI) interfaces. By default on the SK-S7G2 the LCD interface mode has been configured to start up in the SPI interface mode in order to initialize the display driver IC before use. As a result, we need to set up a SPI communications interface with SSP. In this lab section we will add an RSPI driver and configure pins for the SPI bus. Procedural Steps: Click My GUI Thread in the Threads pane and confirm it gets highlighted. Then click in the My GUI Thread Stacks pane to select SPI Driver on r_rspi from the Driver->Connectivity drop-down list. Creating a basic GUI application with Synergy and GUIX Page 10 of 28

11 LAB PROCEDURE Click on the g_spi0 SPI Driver on r_rspi module and edit the settings as shown below in the Properties view. Select the g_transfer0 Transfer Driver on r_dtc in the My GUI Thread Stacks pane and press Remove to remove the driver. Repeat the previous step for the g_transfer1 Transfer Driver on r_dtc. The RSPI driver can currently only support DTC transfer of 32 bit words. We need to send individual bytes over SPI so we must disable the DTC drivers for the g_rspi_lcdc SPI Driver. Creating a basic GUI application with Synergy and GUIX Page 11 of 28

12 The RSPI bus pins need to be configured. Go to Synergy Configuration and open the Pins tab. Find Peripherals Connectivity:SPI, and expand the list. Select SPI0 and change the Operation Mode to Enabled. Ensure that the pin assignments are as shown below. Creating a basic GUI application with Synergy and GUIX Page 12 of 28

13 Several LCD panel signals are controlled by GPIO pins under application control. Because the RSPI is configured for Clock Synchronous operation the SPI slave select signal must be controlled by the application as a GPIO pin. Slave select for the LCD is on P611. Additionally there is a reset pin on P610 and a command pin on P115. We need to enable these three pins as GPIO outputs. Only P610 is shown below apply the same settings to P611 and P115. Click the Generate Project Content button on the Synergy Configuration view. This will add the new display driver and RSPI configuration settings to your "my_gui_thread.c" and "my_gui_thread.h generated files. Synergy does not have built-in LCD startup files specific to the SK display, so we have borrowed the various necessary pieces of code from a previous project to help you with the display startup. Copy the provided files lcd_setup.c and lcd.h into your project src folder. Creating a basic GUI application with Synergy and GUIX Page 13 of 28

14 The LCD setup code uses a semaphore that you will need to create. Return to the Synergy Configuration view Threads tab and select the My GUI Thread thread. Then locate the My GUI Thread Objects pane and click the New Object button to create a new semaphore. Select the new semaphore g_new_semaphore and change its Name and Symbol in the properties tab to My GUI Semaphore and g_my_gui_semaphore. These names match the values already used in the lcd_startup.c code. Copy the provided file my_gui_thread_entry.c to the src folder in your e 2 studio project (overwrite the existing file). The provided code opens and starts the Display interface to drive the LCD panel. Build the project and make sure there are no compile errors. Connect the Micro USB end of the supplied USB cable to the SK-S7G2 board J19 connector (DEBUG_USB), and the other end to a USB port on your computer. (J19 connects to a SEGGER J-Link On-Board debugger.) Creating a basic GUI application with Synergy and GUIX Page 14 of 28

15 Click the button pull-down and select Debug Configurations. Check that the debugger configuration is same as below, then click the Debug button to connect debugger to the target board. Run the program and make sure the LCD panel is activated. There should be 3 color bars on the LCD panel that are drawn directly into the frame buffer by the test_lcd() function. After initializing the LCD, the program should be in while(1) loop in the my_gui_thread_entry() function. Creating a basic GUI application with Synergy and GUIX Page 15 of 28

16 4 Build a GUI using GUIX Studio LAB PROCEDURE Overview: In this section you will create a new GUIX Studio Project, set it up for the LCD on the SK-S7G2 board, assign a 'splash screen' and then output the files generated by GUIX Studio into your Synergy project. Procedural Steps: Open GUIX Studio and click Create New Project at the startup screen. Enter a Project Name for this GUIX Studio project. This name will be incorporated into the code generated, so for this lab name it "my_guix_lab" (do not change this or you will have to change all the references to it in the provided Synergy project code). Locate the path for your Synergy GUI lab project, enter it as the Project Path, then click Save. (Note: This is the full path to your Synergy project, not just the workspace name.) Set the paths for GUI source files to be generated. For this lab we want them to go in the src folder. Set all other values as shown, then click Save: Creating a basic GUI application with Synergy and GUIX Page 16 of 28

17 LAB PROCEDURE Note! You may be tempted to change the x resolution setting to 240 to match the number of pixels per line of the SK display, but don't! The Synergy display driver requires a screen width divisible by 64 bytes at 16 bits per pixel that s 32 pixels. This is due to the way the GLCDC peripheral internally performs burst transfers. That aside, your display image file size still needs to be limited to 240 x 320 to display properly without being cut off. From the Project View, right-click main_display and select Insert->Window->Window: In the Properties View for the newly created window set the properties as shown: Creating a basic GUI application with Synergy and GUIX Page 17 of 28

18 Now we need to add the splash screen graphic. We'll use a.jpg image file that has already been sized for this LCD display. In the upper-right of GUIX Studio expand the Pixelmaps view, click Custom, then Add New Pixelmap. The image file selector will open. Locate the provided file "splash_screen.jpg" and select it. The "splash_screen.jpg" file will now be available in the Custom pixelmaps view. You can either click on this and drag/drop it into your splash screen window in the preview area or select it from the Wallpaper pull-down in the splash_screen Properties View: At this time we will save the project and output the GUIX screen to your Synergy project. Click Project- >SaveProject. Next click Project->Generate All Output Files, then Generate. GUIX will add the following files to the src folder in your Synergy project: my_guix_lab_resources.c, my_guix_lab_resources.h, my_guix_lab_specifications.c and my_guix_lab_specifications.h. Creating a basic GUI application with Synergy and GUIX Page 18 of 28

19 5 Adding GUIX Framework and Drivers LAB PROCEDURE Overview: In this section you will use the SSP to configure the framework and drivers in your Synergy project that are needed to access GUIX resources in order to output the GUI to the LCD. Procedural Steps: In the Synergy configurator under the Threads tab select My GUI Thread. In the My GUI Thread Stacks pane select the GUIX on gx module and enable the 2D Drawing Engine and JPEG Support. In the My GUI Thread Stacks panel now select g_sf_el_gx0 GUIX Port on sf_el_gx then change its settings in the Properties tab as shown below: Click the Generate Project Content button on the Synergy Configuration view to generate the new driver code. Add the provided file my_gui_event_handler.c to the src folder. In the Project explorer view locate the source file my_gui_thread_entry.c and open it in the editor. Enable sections of code by editing the following lines: Line 4 #define LCDTEST 1 Change 1 to 0 Line 5 #define GUIX 0 Change 0 to 1 Build the project and make sure there are no compile errors. If you get errors related to D/AVE files ( Secure builder required ) right click on your project and select Clean Project then build again. Creating a basic GUI application with Synergy and GUIX Page 19 of 28

20 Click the button to run the project under the Debugger. At this point the LCD should be displaying the splash screen graphic and the program should be idling in the main while(1) loop. Creating a basic GUI application with Synergy and GUIX Page 20 of 28

21 6 Add a Data Output Window to the GUI LAB PROCEDURE Overview: In this section you will use GUIX Studio to add a text window to your GUI, and send a custom message string to it. This is the basis for outputting run-time data from an application to the GUI. Procedural Steps: If your GUIX Studio project you created in the previous section is not still open, open it now. This can easily be done from within e2studio by double-clicking the GUIX Studio icon in the Project Explorer view. Under the GUIX Studio Project View, add a Multi-Line View widget to the splash_screen by right-clicking, then Insert->Text->Multi Line View. In the GUI preview drag the newly created widget to the lower area and resize it to look like this: Creating a basic GUI application with Synergy and GUIX Page 21 of 28

22 Expand the Colors menu at the upper right and locate the entry for TEXT_INPUT_FILL. Double-click the color square next to it to open the color editor. Change the fill color to black by moving all sliders (or just the Luminance slider) to 0. Save the changes. The white text on black background should now be visible. In the Properties View for the Multi Line View widget, change the Text align property to Left and the Text property to "My initial text" or some other short string if you prefer. This is what will be displayed when the application starts up. Click Project->Save Project. Next click Project->Generate All Output Files, then Generate. GUIX Studio will modify the source files in your Synergy project with the new GUI changes. Go back to your Synergy project in e2studio and rebuild the project. Run your project in the debugger to see the new Text View displayed with your starting message. Creating a basic GUI application with Synergy and GUIX Page 22 of 28

23 7 Add Messaging Framework and Touch Drivers LAB PROCEDURE Overview: In this section you will add the Synergy Messaging Framework and Touch Drivers to allow interaction with the GUI. Procedural Steps: In the Synergy Configuration view Threads tab select the My GUI Thread. Then in the My GUI Thread Stacks add the Touch Panel & Messaging frameworks by selecting Panel Framework on sf_touch_panel_i2c. New->Framework->Input->Touch Select the newly-created g_sf_touch_panel_i2c0 Touch Panel Framework on sf_touch_panel_i2c and configure its settings in the Properties tab as shown below: In the Pins tab, set port 6 pin 9 (P609) to Output mode (Initial High). Creating a basic GUI application with Synergy and GUIX Page 23 of 28

24 In the Threads tab Select My GUI Thread on the Threads pane and click the Add I2C Driver box under the g_sf_touch_panel_i2c0 Touch Panel Framework. Select New->I2C Master Driver on r_riic: Now select the g_i2c0 I2C Master Driver on r_riic in the My GUI Thread Stacks pane and configure its settings in the Properties tab. Creating a basic GUI application with Synergy and GUIX Page 24 of 28

25 In the Pins tab verify that the RIIC I/O pins are enabled: Select g_external_irq0 External IRQ Driver on r_icu and configure its settings in the Properties tab as shown below. In the My GUI Thread Stacks pane click Add Touch Driver and select New->Touch Panel Driver on touch_panel_sx8654. Creating a basic GUI application with Synergy and GUIX Page 25 of 28

26 LAB PROCEDURE In the Synergy Configuration window select the Messaging tab and click on the Touch event class. In the Touch Subscribers pane press the New button and select My GUI Thread from the drop down list. Press OK. Click the Generate Project Content button on the Synergy Configuration view to generate the new driver code. In the Project explorer view locate the source file my_gui_thread_entry.c and open it in the editor. Enable sections of code to handle touch events by editing the following line: Line 6 #define TOUCH 0 Change 0 to 1 Next we will learn how to change the contents of the Text View window at runtime. For now, we will use the sample event handler that has been prepared for you. The event handler will change the text after a short time delay from start. From the src folder, open the file my_gui_event_handler.c in the editor. Uncomment lines 30 and 40 to enable the statements: GX_MULTI_LINE_TEXT_VIEW * my_text_view = &splash_screen.splash_screen_text_view_1;... status = gx_multi_line_text_view_text_set(my_text_view, "Hello World from Synergy!!!"); If you like, you can edit the string on line 40 to say something else. Since this argument takes a string literal or a pointer to a string, this can be adapted to handle all kinds of string output. For example, if you have numeric sensor data you could turn it into a string using the C sprintf() function then provide that as the string argument in gx_multi_line_text_view_text_set(). See the GUIX API user manual for further details. Rebuild the project and run it in the debugger to see the new customized message displayed after a short delay. Creating a basic GUI application with Synergy and GUIX Page 26 of 28

27 8 Add an Input Button to the GUI LAB PROCEDURE Overview: In this section you will use GUIX Studio to add an Input Button to the GUI and detect button presses in your Synergy application. Procedural Steps: If your GUIX Studio project is not still open, open it now. This can easily be done from within e2studio by double-clicking the GUIX Studio icon in the Project Explorer view. Under the GUIX Studio Project View, add a Text Button widget to the splash_screen by right-clicking, then Insert->Button->Text Button. (Be sure to add it to the splash screen, do not add it to the text box) Move the button to the center of the upper LCD area and resize it to make it larger. (If it's too small it may be hard to press on the small LCD.) In the Properties View for button_1 edit the Widget Id field to BUTTON1 Click Project->SaveProject. Next click Project->Generate All Output Files, then Generate. GUIX Studio will modify the source files in your Synergy project with the new GUI changes. Go back to your Synergy project. In my_gui_event_handler.c enable the case statement that handles this button by changing line 46 to #if(1). Creating a basic GUI application with Synergy and GUIX Page 27 of 28

28 Rebuild the project. Run your project in the debugger. After a short delay see the new Text View displayed with your starting message. Touch your GUI button on the LCD and watch for LED1 to turn off. Finished Creating a basic GUI application with Synergy and GUIX Page 28 of 28

Getting Started with Weather Panel Application

Getting Started with Weather Panel Application Application Note Renesas Synergy Platform Getting Started with Weather Panel Application R30AN0231EU0207 Rev.2.07 Introduction This application note describes a simulated Weather Panel application. The

More information

Getting Started with the Weather Panel Application

Getting Started with the Weather Panel Application Application Note Renesas Synergy Platform Getting Started with the Weather Panel Application R30AN0231EU0209 Rev.2.09 Introduction This application note describes a simulated Weather Panel application.

More information

Getting Started with Thermostat Application for S7G2 and S5D9

Getting Started with Thermostat Application for S7G2 and S5D9 Application Note Renesas Synergy Platform Getting Started with Thermostat Application for S7G2 and S5D9 R12AN0055EU0104 Rev.1.04 Introduction This application note describes a simulated Thermostat control

More information

SPI Framework Module Guide

SPI Framework Module Guide Application Note Introduction This module guide will enable you to effectively use a module in your own design. Upon completion of this guide, you will be able to add this module to your own design, configure

More information

ARROW ARIS EDGE LCD Shield User s Guide 03/05/2018

ARROW ARIS EDGE LCD Shield User s Guide 03/05/2018 ARROW ARIS EDGE LCD Shield User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2017.12 02 CHAPTER 9 INCLUDING A REAL-TIME OPERATING SYSTEM CONTENTS 9 INCLUDING A REAL-TIME OPERATING SYSTEM 03 9.1 Threads, Semaphores and Queues

More information

6L00IA - Introduction to Synergy Software Package Short Version (SSP v1.2.0) Renesas Synergy Family - S7 Series

6L00IA - Introduction to Synergy Software Package Short Version (SSP v1.2.0) Renesas Synergy Family - S7 Series 6L00IA - Introduction to Synergy Software Package Short Version (SSP v1.2.0) Renesas Synergy Family - S7 Series LAB PROCEDURE Description: The purpose of this lab is to familiarize the user with the Synergy

More information

BASICS OF THE RENESAS SYNERGY TM

BASICS OF THE RENESAS SYNERGY TM BASICS OF THE RENESAS SYNERGY TM PLATFORM Richard Oed 2018.11 02 CHAPTER 9 INCLUDING A REAL-TIME OPERATING SYSTEM CONTENTS 9 INCLUDING A REAL-TIME OPERATING SYSTEM 03 9.1 Threads, Semaphores and Queues

More information

Touch Panel Framework Module Guide

Touch Panel Framework Module Guide Application Note Renesas Synergy Platform R11AN0179EU0103 Rev.1.03 Introduction This module guide will enable you to effectively use a module in your own design. Upon completion of this guide, you will

More information

GUIX "Hello World" for SK-S7G2 and PK-S5D9

GUIX Hello World for SK-S7G2 and PK-S5D9 Introduction Application Note This application note guides you through the process of creating a simple two screen GUI using GUIX Studio for the SK-S7G2 and PK-S5D9 Synergy MCU Group. Its application project

More information

BASICS OF THE RENESAS SYNERGY TM

BASICS OF THE RENESAS SYNERGY TM BASICS OF THE RENESAS SYNERGY TM PLATFORM Richard Oed 2018.11 02 CHAPTER 8 HELLO WORLD! HELLO BLINKY! CONTENTS 8 HELLO WORLD! HELLO BLINKY! 03 8.1 Your First Project Using e 2 studio 04 8.1.1 Creating

More information

RX Family APPLICATION NOTE

RX Family APPLICATION NOTE Using the Graphic LCD Controller Module Firmware Integration Technology Introduction APPLICATION NOTE R01AN3509EJ0100 Rev. 1.00 This application note describes the method to display images on the TFT-LCD

More information

Touch Panel Framework Module Guide

Touch Panel Framework Module Guide Application Note Renesas Synergy Platform R11AN0179EU0102 Rev.1.02 Introduction This module guide will enable you to effectively use a module in your own design. Upon completion of this guide, you will

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2018.11 02 CHAPTER 7 STARTING THE RENESAS SYNERGY PROMOTION KIT PK-S5D9 FOR THE FIRST TIME CONTENTS 7 STARTING THE RENESAS SYNERGY PROMOTION KIT PK-S5D9

More information

Synergy Demo. USB Host and Device

Synergy Demo. USB Host and Device Synergy Demo 1. Introduction This Demo illustrates the communication between the two SK-Kits over USB: one SK-Kit uses its USB Host and the other uses its USB Device. One kit sends the actual time and

More information

GUIX "Hello World" for DK-S7G2

GUIX Hello World for DK-S7G2 Application Note Renesas Synergy Platform R12AN0029EU0105 Rev.1.05 Introduction This application note guides you through the process of creating a simple two-screen GUI using GUIX Studio for the DK-S7G2

More information

Tools Basics. Getting Started with Renesas Development Tools R8C/3LX Family

Tools Basics. Getting Started with Renesas Development Tools R8C/3LX Family Getting Started with Renesas Development Tools R8C/3LX Family Description: The purpose of this lab is to allow a user new to the Renesas development environment to quickly come up to speed on the basic

More information

Renesas PE-HMI1 Synergy S7 with Clarinox SPP Application

Renesas PE-HMI1 Synergy S7 with Clarinox SPP Application Application Project Guide Version 0.1 Renesas PE-HMI1 Synergy S7 with Clarinox SPP Application Contents 1. Introduction... 3 2. Prerequisites... 3 3. Requirements... 3 4. Installation and Importing for

More information

Power Profiles V2 Framework Module Guide

Power Profiles V2 Framework Module Guide Application Note Renesas Synergy Platform R11AN0317EU0100 Rev.1.00 Introduction This module guide will enable you to effectively use a module in your own design. Upon completion of this guide you will

More information

GUIX "Hello World" for DK-S7G2

GUIX Hello World for DK-S7G2 Application Note Renesas Synergy Platform R12AN0029EU0107 Rev.1.07 Introduction This application note guides you through the process of creating a simple two-screen GUI using GUIX Studio for the DK-S7G2

More information

GUIX "Hello World" for PE-HMI1

GUIX Hello World for PE-HMI1 Application Note Renesas Synergy Platform R12AN0030EU0115 Rev.1.15 Introduction This application note guides you through the process of creating a simple two screen GUI using GUIX Studio for the PE-HMI1.

More information

GUIX "Hello World" for PE-HMI1

GUIX Hello World for PE-HMI1 Application Note Renesas Synergy Platform R12AN0030EU0117 Rev.1.17 Introduction This application note guides you through the process of creating a simple two screen GUI using GUIX Studio for the PE-HMI1.

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2018.11 02 CHAPTER 11 EVENT ANALYSIS WITH TRACEX CONTENTS 11 EVENT ANALYSIS WITH TRACEX 03 11.1 An Introduction to TraceX 03 11.2 Built-in Views and

More information

Messaging Framework Module Guide

Messaging Framework Module Guide Application Note Renesas Synergy Platform R11AN0096EU0102 Rev.1.02 Introduction This module guide will enable you to effectively use a module in your own design. Upon completion of this guide, you will

More information

ATWINC15X0 Wi-Fi Add-on Component

ATWINC15X0 Wi-Fi Add-on Component ATWINC15X0 Wi-Fi Add-on Component User s Manual All information contained in these materials, including products and product specifications, represents information on the product at the time of publication

More information

Synergy Demo. WiFi Communication

Synergy Demo. WiFi Communication 1. Introduction This Demo illustrates the WiFi communication between a PE-HMI board and a SK-Kit over Ethernet with a Route: the PE-HMI board works as client and the SK-Kit as Server. The PE- HMI board

More information

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Integrated Software Framework v1.11 2013-2017 Microchip Technology Inc. All rights reserved. MPLAB Harmony Graphics Composer

More information

MSP430 Interface to LMP91000 Code Library

MSP430 Interface to LMP91000 Code Library Application Note 2230 Vishy Viswanathan July 13, 2012 MSP430 Interface to LMP91000 Code 1.0 Abstract The MSP430 is an ideal microcontroller solution for low-cost, low-power precision sensor applications

More information

Micrium OS Kernel Labs

Micrium OS Kernel Labs Micrium OS Kernel Labs 2018.04.16 Micrium OS is a flexible, highly configurable collection of software components that provides a powerful embedded software framework for developers to build their application

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2017.12 02 CHAPTER 5 WORKING WITH THE DEVELOPMENT ENVIRONMENTS FOR SYNERGY CONTENTS 5 WORKING WITH THE DEVELOPMENT ENVIRONMENTS FOR SYNERGY 03 5.1

More information

Introduction to the ThreadX Debugger Plugin for the IAR Embedded Workbench C-SPYDebugger

Introduction to the ThreadX Debugger Plugin for the IAR Embedded Workbench C-SPYDebugger C-SPY plugin Introduction to the ThreadX Debugger Plugin for the IAR Embedded Workbench C-SPYDebugger This document describes the IAR C-SPY Debugger plugin for the ThreadX RTOS. The ThreadX RTOS awareness

More information

MetaWatch Firmware Design Guide

MetaWatch Firmware Design Guide MetaWatch Firmware Design Guide MetaWatch Firmware Design Guide Page 1 of 14 1 Contents 1 Contents... 2 2 Introduction... 3 2.1 Revision History... 4 3 Hardware... 5 3.1 Common Watch Features... 5 3.2

More information

Digital Blocks Semiconductor IP

Digital Blocks Semiconductor IP Digital Blocks Semiconductor IP TFT Controller General Description The Digital Blocks TFT Controller IP Core interfaces a microprocessor and frame buffer memory via the AMBA 2.0 to a TFT panel. In an FPGA,

More information

Wi-Fi Framework Module Guide

Wi-Fi Framework Module Guide Application Note Renesas Synergy Platform R11AN0252EU0100 Rev.1.00 Introduction This Module Guide will enable you to effectively use a module in their own design. On completion of this guide, you will

More information

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

Use Vivado to build an Embedded System

Use Vivado to build an Embedded System Introduction This lab guides you through the process of using Vivado to create a simple ARM Cortex-A9 based processor design targeting the ZedBoard development board. You will use Vivado to create the

More information

F28069 ControlCard Lab1

F28069 ControlCard Lab1 F28069 ControlCard Lab1 Toggle LED LD2 (GPIO31) and LD3 (GPIO34) 1. Project Dependencies The project expects the following support files: Support files of controlsuite installed in: C:\TI\controlSUITE\device_support\f28069\v135

More information

SVM-03/03U Utility Software. [SVMCtl] Software Manual. Rev. 8.1

SVM-03/03U Utility Software. [SVMCtl] Software Manual. Rev. 8.1 SVM-03/03U Utility Software [SVMCtl] Software Manual Rev. 8.1 NetVision Co., Ltd Revision History NetVision Co., Ltd. Edition Date Detail Charge 1st 2014/06/25 The first edition N. Kashiwagi 2nd 2015/05/12

More information

esi-risc Development Suite Getting Started Guide

esi-risc Development Suite Getting Started Guide 1 Contents 1 Contents 2 2 Overview 3 3 Starting the Integrated Development Environment 4 4 Hello World Tutorial 5 5 Next Steps 8 6 Support 10 Version 2.5 2 of 10 2011 EnSilica Ltd, All Rights Reserved

More information

Migration from HEW to e 2 studio Development Tools > IDEs

Migration from HEW to e 2 studio Development Tools > IDEs Migration from HEW to e 2 studio Development Tools > IDEs LAB PROCEDURE Description The purpose of this lab is to allow users of the High-performance Embedded Workbench (HEW) to gain familiarity with the

More information

Using Virtual EEPROM and Flash API for Renesas MCUs RX600 Series

Using Virtual EEPROM and Flash API for Renesas MCUs RX600 Series Using Virtual EEPROM and Flash API for Renesas MCUs RX600 Series Description: This lab will take the user through using the Virtual EEPROM (VEE) project for RX. The user will learn to use the Virtual EEPROM

More information

AndeSight. User Manual. Working with AndESLive. Version 1.0

AndeSight. User Manual. Working with AndESLive. Version 1.0 AndeSight User Manual Working with AndESLive Version 1.0 Table of Contents AndeSight User Manual PREFACE... 2 CHAPTER 1 INTRODUCTION AND OVERVIEW... 3 1.1 ANDESIGHT OVERVIEW... 4 1.2 IDE OVERVIEW... 4

More information

SKP16C26 Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc.

SKP16C26 Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc. SKP16C26 Tutorial 1 Software Development Process using HEW Renesas Technology America Inc. 1 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW (Highperformance

More information

Xilinx Vivado/SDK Tutorial

Xilinx Vivado/SDK Tutorial Xilinx Vivado/SDK Tutorial (Laboratory Session 1, EDAN15) Flavius.Gruian@cs.lth.se March 21, 2017 This tutorial shows you how to create and run a simple MicroBlaze-based system on a Digilent Nexys-4 prototyping

More information

Graphics Demonstrations

Graphics Demonstrations MPLAB Harmony Integrated Software Framework Copyright (c) 2013-2017 Microchip Technology Inc. All rights reserved. This section provides descriptions of the Graphics demonstrations. MPLAB Harmony is available

More information

VORAGO VA108x0 GCC IDE application note

VORAGO VA108x0 GCC IDE application note AN2015 VORAGO VA108x0 GCC IDE application note June 11, 2018 Version 1.0 VA10800/VA10820 Abstract ARM has provided support for the GCC (GNU C compiler) and GDB (GNU DeBug) tools such that it is now a very

More information

Console Framework Module Guide

Console Framework Module Guide Application Note Renesas Synergy Platform R11AN0110EU0101 Rev.1.01 Introduction This module guide will enable you to effectively use a module in your own design. Upon completion of this guide, you will

More information

Introduction to Zynq

Introduction to Zynq Introduction to Zynq Lab 2 PS Config Part 1 Hello World October 2012 Version 02 Copyright 2012 Avnet Inc. All rights reserved Table of Contents Table of Contents... 2 Lab 2 Objectives... 3 Experiment 1:

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2017.12 02 CHAPTER 3 AN INTRODUCTION TO THE APIs OF THE SYNERGY SOFTWARE CONTENTS 3 AN INTRODUCTION TO THE APIs OF THE SYNERGY SOFTWARE 03 3.1 API

More information

F28335 ControlCard Lab1

F28335 ControlCard Lab1 F28335 ControlCard Lab1 Toggle LED LD2 (GPIO31) and LD3 (GPIO34) 1. Project Dependencies The project expects the following support files: Support files of controlsuite installed in: C:\TI\controlSUITE\device_support\f2833x\v132

More information

RX600. Direct Drive LCD KIT. Product Overview. Renesas Electronics America Inc. Carmelo Sansone. Tuesday, February, 2011 Rev. 1.

RX600. Direct Drive LCD KIT. Product Overview. Renesas Electronics America Inc. Carmelo Sansone. Tuesday, February, 2011 Rev. 1. RX600 Direct Drive LCD KIT Product Overview Renesas Electronics America Inc. Carmelo Sansone Tuesday, February, 2011 Rev. 1.3 2010 Renesas Electronics America Inc. All rights reserved. 00000-A Outline

More information

Getting Started with Kinetis SDK (KSDK) v.1.2

Getting Started with Kinetis SDK (KSDK) v.1.2 Freescale Semiconductor Document Number: KSDK12GSUG User's Guide Rev. 0, 4/2015 Getting Started with Kinetis SDK (KSDK) v.1.2 1 Overview Kinetis SDK (KSDK) is a Software Development Kit that provides comprehensive

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS. For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS. For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a rich client plug-in application

More information

Migrating from CubeSuite+ to Eclipse RL78 Family

Migrating from CubeSuite+ to Eclipse RL78 Family Migrating from CubeSuite+ to Eclipse RL78 Family LAB PROCEDURE Description: This hands-on lab covers how to convert CubeSuite+ project to Renesas new Eclipsebased IDE, e 2 studio using Free GNU compiler

More information

InDesign CC 2014 Essential Skills

InDesign CC 2014 Essential Skills InDesign CC 2014 Essential Skills Adobe InDesign Creative Cloud 2014 University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2015 KSU Division

More information

Getting Started with MCUXpresso SDK CMSIS Packs

Getting Started with MCUXpresso SDK CMSIS Packs NXP Semiconductors Document Number: MCUXSDKPACKSGSUG User's Guide Rev. 1, 11/2017 Getting Started with MCUXpresso SDK CMSIS Packs 1 Introduction The MCUXpresso Software Development Kit (SDK) is a comprehensive

More information

Developing Intelligent Apps

Developing Intelligent Apps Developing Intelligent Apps Lab 1 Creating a Simple Client Application By Gerry O'Brien Overview In this lab you will construct a simple client application that will call an Azure ML web service that you

More information

University of Massachusetts Amherst Computer Systems Lab 2 (ECE 354) Spring Lab 1: Using Nios 2 processor for code execution on FPGA

University of Massachusetts Amherst Computer Systems Lab 2 (ECE 354) Spring Lab 1: Using Nios 2 processor for code execution on FPGA University of Massachusetts Amherst Computer Systems Lab 2 (ECE 354) Spring 2007 Lab 1: Using Nios 2 processor for code execution on FPGA Objectives: After the completion of this lab: 1. You will understand

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS 1 Lab instructions This lab teaches

More information

Program and Graphical User Interface Design

Program and Graphical User Interface Design CHAPTER 2 Program and Graphical User Interface Design OBJECTIVES You will have mastered the material in this chapter when you can: Open and close Visual Studio 2010 Create a Visual Basic 2010 Windows Application

More information

Easy Stand Alone (U8) Getting Started Guide for Pixel Control

Easy Stand Alone (U8) Getting Started Guide for Pixel Control 11235 West Bernardo Court, Suite 102 San Diego, CA 92127 888-880-1880 Fax: 707-281-0567 EnvironmentalLights.com Kit Front Back Easy Stand Alone (U8) Getting Started Guide for Pixel Control Install "Easy

More information

Using Code Composer Studio IDE with MSP432

Using Code Composer Studio IDE with MSP432 Using Code Composer Studio IDE with MSP432 Quick Start Guide Embedded System Course LAP IC EPFL 2010-2018 Version 1.2 René Beuchat Alex Jourdan 1 Installation and documentation Main information in this

More information

NFC Framework and NT3H1201 Device Driver v1.1

NFC Framework and NT3H1201 Device Driver v1.1 NFC Framework and NT3H1201 Device Driver v1.1 Quickstart Guide for ARIS board All information contained in these materials, including products and product specifications, represents information on the

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2017.12 02 CHAPTER 10 SENDING DATA THROUGH USB USING A QUEUE CONTENTS 10 SENDING DATA THROUGH USB USING A QUEUE 03 10.1 Setting Up a USB Port in Synergy

More information

HyperBus Memory Controller (HBMC) Tutorial

HyperBus Memory Controller (HBMC) Tutorial Synaptic Labs' HyperBus Memory Controller (HBMC) Tutorial T005B: A Qsys based Nios II Reference design with a simple application running from HyperFlash and HyperRAM device using S/Labs' HBMC IP. The HyperRAM

More information

1. Concepts and What s New Concepts What's New in E Getting Started Starting Electra Page Scale

1. Concepts and What s New Concepts What's New in E Getting Started Starting Electra Page Scale 1 1. Concepts and What s New... 6 1.1 Concepts... 6 1.2 What's New in E6... 7 2. Getting Started... 8 2.1 Starting Electra... 8 2.2 Page Scale... 8 2.3 Page Measurement Units... 9 2.4 Stencils and Drawing

More information

Procedure to Create Custom Report to Report on F5 Virtual Services

Procedure to Create Custom Report to Report on F5 Virtual Services Procedure to Create Custom Report to Report on F5 Virtual Services Summary: The purpose of this Application Note is to provide a procedure to report on F5 Load Balancer Virtual Services. The report uses

More information

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills

Discovering Computers & Microsoft Office Office 2010 and Windows 7: Essential Concepts and Skills Discovering Computers & Microsoft Office 2010 Office 2010 and Windows 7: Essential Concepts and Skills Objectives Perform basic mouse operations Start Windows and log on to the computer Identify the objects

More information

External Headers. USB Host User LEDs. User Switches. E1 Header (Unfitted)

External Headers. USB Host User LEDs. User Switches. E1 Header (Unfitted) Quick Start Cymbet Energy Harvesting Renesas Promotional Board for RX111 External Headers Digilent Pmod Compatible TM USB Function JP2 (not fitted) J-Link LED USB Host User LEDs External Headers Reset

More information

μez Software Quickstart Guide

μez Software Quickstart Guide μez Software Quickstart Guide Copyright 2013, Future Designs, Inc., All Rights Reserved 1 Table of Contents 1. Introduction 3 2. Downloading uez 4 3. Project Configuration 5 Preparing the uez Source Code

More information

MSP430 Interface to LMP91000 Code Library

MSP430 Interface to LMP91000 Code Library MSP430 Interface to LMP91000 Code Library 1.0 Abstract The MSP430 is an ideal microcontroller solution for low-cost, low-power precision sensor applications because it consumes very little power. The LMP91000

More information

How to Develop Firmware for a Direct Drive TFT-LCD Design with RX62N By: Daniel Azimov, Software Specialist, System Design Center, Future Electronics A Direct Drive TFT-LCD design can drive high quality

More information

Start a New Project with Keil MDK-ARM Version 5 and ST Micro Nucleo-F446RE

Start a New Project with Keil MDK-ARM Version 5 and ST Micro Nucleo-F446RE Start a New Project with Keil MDK-ARM Version 5 and ST Micro Nucleo-F446RE This tutorial is intended for starting a new project to develop software with ST Micro Nucleo-F446RE board (with STM32F446RE MCU)

More information

Table of Contents. Page 2 of 72. High Impact 4.0 User Manual

Table of Contents. Page 2 of 72. High Impact  4.0 User Manual Table of Contents Introduction 5 Installing High Impact email 6 Installation Location 6 Select Mail Client 6 Create a ReadyShare Account 6 Create a Default Profile 6 Outlook Configuration Message 6 Complete

More information

ARROW ARIS Board Software User s Guide 27/07/2016

ARROW ARIS Board Software User s Guide 27/07/2016 ARROW ARIS Board Software User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and

More information

Renesas DALI Framework Quick Start Guide

Renesas DALI Framework Quick Start Guide Renesas DALI Framework Quick Start Guide Version: 2017, October 17 Table of contents 1 Introduction... 3 2 Prerequisites... 3 3 Requirements... 3 4 Installation and importing for e2studio... 4 4.1 Installation...

More information

RL78 Project Configuration Tips

RL78 Project Configuration Tips RL78 Project Configuration Tips Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Microcontroller and Microprocessor Line-up 2010 2012 32-bit 8/16-bit 1200 DMIPS, Superscalar Automotive

More information

Getting Started with Kinetis SDK (KSDK) v.1.3

Getting Started with Kinetis SDK (KSDK) v.1.3 Freescale Semiconductor Document Number: KSDK13GSUG User's Guide Rev. 1, 11/2015 Getting Started with Kinetis SDK (KSDK) v.1.3 1 Overview Kinetis SDK (KSDK) is a Software Development Kit that provides

More information

QNX Software Development Platform 6.6. Quickstart Guide

QNX Software Development Platform 6.6. Quickstart Guide QNX Software Development Platform 6.6 QNX Software Development Platform 6.6 Quickstart Guide 2005 2014, QNX Software Systems Limited, a subsidiary of BlackBerry. All rights reserved. QNX Software Systems

More information

Cropping an Image for the Web

Cropping an Image for the Web Cropping an Image for the Web This guide covers how to use the Paint software included with Microsoft Windows to crop images for use on a web page. Opening Microsoft Paint (In Windows Accessories) On your

More information

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1 CS 1033 Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1 Upon completion of this lab, you should be able to: Open, create new, save

More information

A brief intro to MQX Lite. Real work: hands-on labs. Overview, Main features and Code Size

A brief intro to MQX Lite. Real work: hands-on labs. Overview, Main features and Code Size October 2013 A brief intro to MQX Lite Overview, Main features and Code Size Real work: hands-on labs Create a new MQX-Lite project, add ConsoleIO and BitIO components Create tasks, watch the flashing

More information

Skkynet Embedded Toolkit for Renesas Synergy

Skkynet Embedded Toolkit for Renesas Synergy Skkynet Embedded Toolkit for Renesas Synergy SSP Integration Test This document provides instructions for testing the Skkynet ETK for Renesas Synergy. It consists of two steps:, and Testing a Sample Application.

More information

Programming in C# Project 1:

Programming in C# Project 1: Programming in C# Project 1: Set the text in the Form s title bar. Change the Form s background color. Place a Label control on the Form. Display text in a Label control. Place a PictureBox control on

More information

Creating a new CDC policy using the Database Administration Console

Creating a new CDC policy using the Database Administration Console Creating a new CDC policy using the Database Administration Console When you start Progress Developer Studio for OpenEdge for the first time, you need to specify a workspace location. A workspace is a

More information

About SVI-03. Dear Customer: NetVision Inc. Marketing Department 8/27/2010

About SVI-03. Dear Customer: NetVision Inc. Marketing Department 8/27/2010 8/27/2010 Dear Customer: NetVision Inc. Marketing Department About SVI-03 Dear Sirs: In this time, thank you for buying the SV series. It is happy if it is possible to refer because it boiled in the one

More information

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

User Manual. LPC-StickView V3.0. for LPC-Stick (LPC2468) LPC2478-Stick LPC3250-Stick. Contents

User Manual. LPC-StickView V3.0. for LPC-Stick (LPC2468) LPC2478-Stick LPC3250-Stick. Contents User Manual LPC-StickView V3.0 for LPC-Stick (LPC2468) LPC2478-Stick LPC3250-Stick Contents 1 What is the LPC-Stick? 2 2 System Components 2 3 Installation 3 4 Updates 3 5 Starting the LPC-Stick View Software

More information

InDesign CC 2014 Intermediate Skills

InDesign CC 2014 Intermediate Skills InDesign CC 2014 Intermediate Skills Adobe InDesign Creative Cloud 2014 University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2016 KSU Division

More information

RX Smart Configurator

RX Smart Configurator APPLICATION NOTE RX Smart Configurator User s Guide: e² studio R20AN0451ES0120 Rev.1.20 Introduction This application note describes the basic usage of the RX Smart Configurator (hereafter called the Smart

More information

Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio

Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio ECE2049 Embedded Computing in Engineering Design Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio In this lab, you will be introduced to the Code Composer Studio

More information

ARROW ARIS EDGE S3 Board User s Guide 21/02/2018

ARROW ARIS EDGE S3 Board User s Guide 21/02/2018 ARROW ARIS EDGE S3 Board User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and is

More information

Use Vivado to build an Embedded System

Use Vivado to build an Embedded System Introduction This lab guides you through the process of using Vivado to create a simple ARM Cortex-A9 based processor design targeting the ZedBoard or Zybo board. Where the instructions refer to both boards,

More information

Customizable Flashloader Solution for Synergy MCUs

Customizable Flashloader Solution for Synergy MCUs Application Note Renesas Synergy Platform Customizable Flashloader Solution for Synergy MCUs R11AN0073EU0110 Rev.1.10 Introduction This application project describes how to integrate and use the Renesas

More information

ARROW ARIS EDGE Board User s Guide 27/09/2017

ARROW ARIS EDGE Board User s Guide 27/09/2017 ARROW ARIS EDGE Board User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and is subject

More information

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). The

More information

Freescale, the Freescale logo and CodeWarrior are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. Xtrinsic is a trademark of

Freescale, the Freescale logo and CodeWarrior are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. Xtrinsic is a trademark of Freescale, the Freescale logo and CodeWarrior are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. Xtrinsic is a trademark of Freescale Semiconductor, Inc. All other product or service

More information

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Embedded Processor Hardware Design October 6 t h 2017. VIVADO TUTORIAL 1 Table of Contents Requirements... 3 Part 1:

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Building an Embedded Processor System on Xilinx NEXYS3 FPGA and Profiling an Application: A Tutorial

Building an Embedded Processor System on Xilinx NEXYS3 FPGA and Profiling an Application: A Tutorial Building an Embedded Processor System on Xilinx NEXYS3 FPGA and Profiling an Application: A Tutorial Introduction: Modern FPGA s are equipped with a lot of resources that allow them to hold large digital

More information