Download the workspace for the integrated development environment e² studio used to develop the user application for OPH-5000i in advance.

This workspace contains the Sample project that contains the tools and settings needed to build a user application that can be installed on the OPH-5000i.

The user application for OPH-5000i will be developed based on this Sample project.

Download a zip file from the following link and unzip it.

In the example below, it is unzipped to "C:\e2_workspace" folder, but you may change the location and name of the unzipped folder to something that is easy to work with.

The folder obtained by unzipping this ZIP file is the workspace folder. The OPH5000EN folder contained in this workspace is the Sample project folder.

    
  C:\e2_workspace
    ├─.metadata
    │  │  ...
    │  │
    │  └─...
    │              
    └─OPH5000EN
        │  .ApplicationDebuglinker
        │  .cproject
        │  .info
        │  .project
        │  .Releaselinker
        │  custom.bat
        │  libSTARTUPOPH5000.a
        │  makefile.init
        │  rx_checksum.exe
        │  
        ├─.settings
        │  │  ...
        │  │  
        │  └─...
        │          
        ├─Release
        │  │  ...
        │  │  
        │  └─...
        │          
        └─src
                app_version.c
                lib.h
                logapi.h
                main.c

The Sample project folder contains the following files:
src\app_version.c
Describes the version of the user application. This is an editable file.
src\main.c
Write the code for the user application. This is an editable file.
src\lib.h, src\logapi.h
Header files of Native API library.
libSTARTUPOPH5000.a
A library file of Native API library.
Other files
Contains the tools and settings needed to build a user application that can be installed on the OPH-5000i.

IMPORTANT

  • The Sample project contains the header files and a library file of the Native API library. These files are subject to change as the system software is updated. The latest versions of these files are included in the system software release, so be sure to check Release history of the system software when building your application.

Projects and Workspaces

In e² studio, the project is the basic unit for building, and the necessary files are stored in the folder of each project. Each user application is an independent project, and the source file of each project, the library file to be linked, and various settings are stored in the project folder.

e² studio stores your projects in a folder called workspace. A workspace folder can contain multiple projects.
When you start e² studio, select the workspace folder. You can work with projects contained in the workspace folder selected at startup in that session.

Example:

C:\e2_workspace is a workspace folder with projects named MYAPP01 and MYAPP02 in it.

  C:\e2_workspace
    ├─.metadata
    │  └─...
    │
    ├─MYAPP01
    │  ├─.settings
    │  │  └─...
    │  ├─Release
    │  │  └─...
    │  └─src
    │
    └─MYAPP02
        ├─.settings
        │  └─...
        ├─Release
        │  └─...
        └─src


Last updated: 2022/03/31