MCUXpresso General Knowledge Base

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

MCUXpresso General Knowledge Base

Labels
  • General 3

Discussions

Sort by:
Introduction Graphical user interfaces (GUIs) have become increasingly popular and have richer graphics than ever before, but creating these displays can be time consuming without help. With time to market being such an important factor in product development, it is important to have a tool to speed up the development of GUIs for your products. SEGGER's AppWizard is a GUI development tool that does just that, by helping you create ready to run GUI applications (built on top of SEGGER's emWin graphics library of course). This document will show you how to create a new AppWizard project and add a background image to get you started on GUI project. We will be using the i.MX RT1050 but the directions should apply to any device that is supported by emWin in the MCUXpresso SDK. Environment SEGGER AppWizard v1.0 or later NXP MCUXpresso IDE v11.0.1 or later MIMXRT1050-EVKB MCUXpresso SDK for the MIMXRT1050-EVKB (including emWin) Downloading and installing the MCUXpresso SDK The first step is to download and install the MCUXpresso SDK for the device you are working with. Make sure that emWin is included as an optional software component. Refer to the video Getting Started with emWin and MCUXpresso if you need instructions on how to do this.  Downloading and installing AppWizard AppWizard can be downloaded from the NXP emWin Libraries Download tab. Navigate to www.nxp.com/emwin-graphics-libraries, click on the download tab, and then click on Download next to the AppWizard Application Development Tool.    Clicking this link will download an installer to your PC. Just run the installer and follow the prompts to install AppWizard to your PC. Remember that NXP recommends selecting defaults for any install options present.   Importing an SDK example Before creating your new AppWizard project, a space to save and export the generated files to is needed. NXP recommends importing the simplest example to use as a template: the emwin_serial_terminal demo. To import this example, follow these directions. Open MCUXpresso IDE and select any workspace desired. In the Quickstart Panel, select Import SDK examples.                                                             Select your Board or Device. Make sure your board or device is supported by emWin in the SDK. For this example, we will select the evkbmimxrt1050.  In the next dialog box, locate the emwin_examples group in the Examples category and expand it.  Select the emwin_serial_terminal example.  Note that here you can also give your project a descriptive prefix or suffix.    Creating a new AppWizard project After the example project has been created, the AppWizard project can now be created, as there is a location to save the project and keep the generated files. Perform the following directions to create a new AppWizard project.  First open AppWizard.  If this is the first time you have opened AppWizard, it will prompt you to create a new project, open a project, or cancel (which would simply close the application).  If so, select "Create new project".  If not, you can select File->New project.   A dialog box with extra options will pop-up.              Select Browse to choose a destination folder for the AppWizard generated files.  It is recommended to choose a location local to the project you just imported. This will be located in the workspace location you chose when starting MCUXpresso.  The next step is to give your AppWizard project a name.  It is recommended to choose the same name as the MCUXpresso project appended with "_AppWizard" as shown below.                                                              Now, you can either select a BSP                      If you select a BSP, make sure you select the BSP for your board.   Or manually select the display size and color format if the device and display you are using is not available in a predetermined BSP.   (NOTE:  If you don't select a BSP, you will need to create the Target/GUI_Lib folder manually to get this tutorial to work. The directions for this are presented later in the document.)                                                                     The last three check-boxes are optional selections that enable SD-card support, bi-directional text support and Thai language support.   Finally, click Ok to create your new project.   In the newly created AppWizard project, a blank canvas will be displayed.   In the project folder, a new folder will be created named with the project named established in the creation of the project.  In this folder, there will be the AppWizard project you created, a Simulation folder (for holding the simulation files), Source folder (for holding the source files AppWizard will create) and a Target folder (that holds BSP files and library files).  (NOTE:  The target folder will not exist if you did not select a BSP.) If you did not select a BSP, manually create a Target folder in the evkbimxrt1050_emwin_serial_terminal_AppWizard folder.  Within the Target folder, create a GUI_Lib folder.  Then copy the header files from <root>/ProgramData/Segger/AppWizard_<version>/Lib/Include to the Target/GUI_Lib folder you just created.   Then copy the library from <root>/ProgramData/Segger/AppWizard_<version>/Lib/GCCM4 to the Target/GUI_Lib folder you just created.  (NOTE:  You could use the library in GCCM7FP if desired, but you would need to rename the library to libGUI.a and enable floating point support. ) Adding a background image to your AppWizard project Next, you will want to add a background image to your project and generate the files for use in your MCUXpresso project.  Follow these directions to add a background image to your project. Click Images on the left hand panel to bring up the Image Resource dialog box.                                                                                          In the Image Resource dialog box, select Add.                                                        This will allow you to select an image from anywhere on your PC. The file you will select will automatically be copied and placed in <AppWizard project root>/Resource/Image. Once you have added the images, they need to be added to the canvas. The first step to being able to add any objects (including images) to your blank canvas is to add a screen to the canvas. Drag and drop the screen icon onto the canvas to add a screen. With the screen added and selected, you should see the properties of the screen and can edit the properties if you need.  Now, add an image object to the screen, by clicking and dragging the Image icon to the screen you just added.  With the image selected, you can change the size, position, and name of the image from the window pane on the right side of the screen. Change the height and width to match that of the size of the screen and change to 0, 0.                                                                                                                 Using this control panel, click the arrow to the left of bitmap, and then click the square underneath bitmap to set the bitmap image to use for this image object.   Clicking the square brings up the Select image dialog box. Scroll to find the image you want to use, select it, and then click Select to use it as the image.   The image should now appear in the project as it would appear on your screen.  Finally, click File->Export and Save.  This will generate the AppWizard files necessary to program your development board.  Modifying your MCUXpresso project settings Once the AppWizard project files are generated, the MCUXpresso project needs to be modified to use the AppWizard files.  The MCUXpresso project should still be open from the previous directions in this document.  If not, go back and perform them to make sure the project is open.  The following directions detail how to configure your MCUXpresso project to use the AppWizard files.   In the MCUXpresso project, first find the AppWizard project folder in the MCUXpresso Project Explorer. Right click on the folder and select Properties as shown.   Select Settings in the C/C++ Build Category.  Ensure that "Exclude resource from build" is unchecked, and click Apply and Close.   Next, expand the AppWizard project folder and then expand the Target folder.  Right click on the Config folder and open the Properties dialog box.   In C/C++ Build -> Settings, be sure to check "Exclude resource from build". Then click Apply and Close.   Repeat steps 3 and 4 for the BSP, FS_Lib, OS_Lib, SEGGER, Shared, and Simulation folders.   Right click on the project and select properties to open the project properties dialog box.   In the C/C++ Build -> Settings category, select MCU C Compiler -> Architecture.  Change Floating point to None as shown.  In MCU Assembler -> Architecture and Headers, change Floating point to None as shown.   In MCU Linker-> Architecture, change Floating point to None as shown.      Next, in MCU Linker -> Libraries, change the library to "GUI" and change the search path to the location where the library is located.  (Note that in the file system on your PC, the library will actually be named "libGUI.a".  MCUXpresso should still be set to look for GUI.  MCUXpresso will look for a file that begins with "lib" and will remove this prefix when passing this library to the linker.)     The final step in modifying the project settings is adding the include search paths.  Under MCU C Compiler, select includes and ensure the following paths are included "${workspace_loc:/${ProjName}/evkbimxrt1050_emwin_serial_terminal_AppWizard/Target/GUI_Lib" "${workspace_loc:/${ProjName}/evkbimxrt1050_emwin_serial_terminal_AppWizard/Source/Generated" "${workspace_loc:/${ProjName}/evkbimxrt1050_emwin_serial_terminal_AppWizard/Source/CustomCode" "${workspace_loc:/${ProjName}/evkbimxrt1050_emwin_serial_terminal_AppWizard/Target/BSP/iMXRT1052_MIMXRT1050_EVK/Setup" "${workspace_loc:/${ProjName}/evkbimxrt1050_emwin_serial_terminal_AppWizard/Target/Inc" Also be sure to remove the following paths: "${workspace_loc:/${ProjName}/emwin/emWin_Config "${workspace_loc:/${ProjName}/emwin/emWin_header Modifying the project source After modifying the project properties, there are source file changes that need to be made since the original source was not intended to be used with AppWizard. Here are the source changes that need to be made to get you going.  Add APPW_X_NoFS.c to the project by simply copying this file into the Source folder in the file system on your PC. (Note that the APPW_X_NoFS.c file can be downloaded from the NXP emWin Libraries download tab.)  In the main source file, emwin_serial_terminal.c, comment out or delete everything underneath BOARD_InitLcd() as shown below.   Just underneath BOARD_InitLcd(), insert a call to MainTask() as shown.   Finally, open emwin_support.h (found in the board folder), change the LCD_BITS_PER_PIXEL to 32.  If you keep the default to 8, the background image will be loaded into the frame buffer because of how LCD_X_DisplayDriver was written.   Conclusion That's it for how to create a new project in AppWizard and how to add a background image. At this point, you should be able to compile and download your project to the target board. You should know how to import a simple SDK example to use as a template, create a new AppWizard project, add a screen and image to this project, modify the template project to use the AppWizard project source files and library, and how to modify the source to use the new AppWizard project.  
View full article
What is MCUXpresso software and tools? The MCUXpresso toolkit include three components: MCUXpresso IDE – an integrated development environment (IDE) MCUXpresso SDK  –  embedded runtime software (drivers, stacks, middleware, RTOS), and MCUXpresso Config Tools - configuration tools in online and desktop editions that provide graphical user interfaces for creating system initialization software that is compatible with the MCUXpresso SDK.    Which devices are supported? MCUXpresso SDK A comprehensive list of supported devices is available in the Community document here. MCUXpresso SDK:   I'm using Kinetis SDK today. Should I move to MCUXpresso SDK? Yes, it is simple and seamless to move to MCUXpresso SDK. Moving to MCUXpresso SDK should have no impact on your current designs, as the new MCUXpresso SDK is based entirely on the Kinetis SDK v2.    I'm using LPCOpen today. Should I move to MCUXpresso SDK? LPCOpen packages that are already available continue to be maintained, and can be used with MCUXpresso IDE. Some LPC devices have both LPCOpen and MCUXpresso SDK support, but it is recommended that MCUXpresso SDK be used in order to take advantage of future updates and improvements.    Does the MCUXpresso SDK require use of the MCUXpresso IDE? No.  The MCUXpresso SDK will include many demo applications and usage examples with pre-configured MCUXpresso IDE projects, but will also include pre-configured projects for IAR Embedded Workbench, ARM Keil MDK, and GNU tools with Cmake build scripts.   Does the MCUXpresso SDK require use of the MCUXpresso Config Tools? No. The MCUXpresso SDK contains all the software needed to get started with embedded development on Kinetis and LPC devices.  However, the Config Tools can greatly accelerate development through the graphical interface that guides you through system configuration (including pins and clocks tools) If I want to continue using previous versions of Kinetis SDK or LPCOpen SDK, where can I download those? Kinetis SDK can be downloaded from www.nxp.com/ksdk LPCOpen can be downloaded from www.nxp.com/lpcopen MCUXpresso IDE:   I'm using Kinetis Design Studio IDE today. Should I move to MCUXpresso IDE? You can continue to use Kinetis Design Studio (KDS) IDE on your current project, as it will continue to be supported by the MCUXpresso SDK through the end of 2017. But, for any new projects you begin, you should migrate to MCUXpresso IDE (or other preferred IDE). MCUXpresso IDE is available now and has broad device support (see a list of supported devices in the Community document here). If you are starting a new desig, we encourage you to move to MCUXpresso IDE.     I'm using LPCXpresso IDE today. Should I move to MCUXpresso IDE? You can continue to use LPCXpresso IDE on your current project. However, MCUXpresso IDE includes full support for legacy and new LPC devices. The MCUXpresso IDE is very similar to the LPCXpresso IDE, and therefore, should be very familiar to you. We recommend moving to MCUXpresso IDE to take advantage of the latest improvements and to star up to date with GNU toolchain releases. 
View full article
[中文翻译版] 见附件   原文链接: https://community.nxp.com/docs/DOC-342727 
View full article