4diac IDE FAQ

  1. When I open a certain perspective, a view element is missing, how can I get it back?
  2. Download not possible! Defined profile () for RMT_XXX.xxx not supported
  3. When I download my application, I get an UNSUPPORTED TYPE error message in the Deployment Console
  4. When I download my application, I get a STATUS ACCESS VIOLATION error messages in the Deployment Console
  5. When I download my application, I get a Create FB Instance failed error
  6. When I want to download my application, I get an connection refused message
  7. How do I use ARRAYs?
  8. What does CLEAN Device do?
  9. What does KILL Device do?

4diac FORTE FAQ

  1. Windows/Cygwin: The setup script runs to completion but when building the target I get strange compile errors
  2. CMake/Cygwin: Can not find C and C++ compilers
  3. CMake/Cygwin: Can not find RC Compilers
  4. FORTE is C++, why are you then using the C-style include files for the standard C library instead of the C++ style include files?
  5. Within my FORTE console, I get UDP-Socket Send failed: Network is unreachable
  6. Within my FORTE console, I get connection closed by peer

4diac IDE answers

  1. When I open a certain perspective, a view element is missing, how can I get it back?

    There are two possibilities to do that:

    Go to top

  2. Download not possible! Defined profile () for RMT_XXX.xxx not supported

    Go to top

  3. When I download my application, I get an UNSUPPORTED TYPE error message in the Deployment Console

    This message appears for multiple problems:

    Go to top

  4. When I download my application, I get a STATUS ACCESS VIOLATION error messages in the Deployment Console

    Check if you used Composite Function Blocks within your Application. Make sure that you have the source code (*.cpp, *.h) of all Function Blocks within the Composite's Network. Also check if all source files are listed within a CMakeLists.txt file.

    Go to top

  5. When I download my application, I get a Create FB Instance failed error

    Verify that the interface of the Function Block you want to download is the same as those available on your FORTE executable. In case you download a Composite Function Block, please make sure that its Function Block Network matches the Function Block Network within your FORTE executable. When in doubt, export your Function Block and compile FORTE before you download again.

    Go to top

  6. When I want to download my application, I get a connection refused message

    Examine the following topics:

    Go to top

  7. How do I use ARRAYs?

    When you create a new Function Block, choose the desired type for your array elements in the Type drop down of the specific data and set the desired array size ArraySize. For initializing, put the values in curly brackets (e.g., {1,2,3}).

    Go to top

  8. What does CLEAN Device do?

    CLEAN Device deletes all existing Resources and the FBs in the Resources. After CLEAN Device, you can deploy any other FB Network.

    Go to top

  9. What does KILL Device do?

    KILL Devices terminates FORTE.

    Go to top

4diac FORTE answers

  1. Windows/Cygwin: The setup script runs to completion but when building the target, I get strange compile errors

    Go to top

  2. CMake/Cygwin: Can not find C and C++ compilers

    CMake Errors:
    your C compiler: CMAKE_C_COMPILER-NOTFOUND was not found. Please set CMAKE_C_COMPILER to a valid compiler path or name. your CXX compiler: CMAKE_CXX_COMPILER-NOTFOUND was not found. Please set CMAKE_CXX_COMPILER to a valid compiler path or name.

    In this case, you need to tick the check box Advanced and look for CMAKE_CXXX_COMPILER and CMAKE_C_COMPILER and set the path and executable for your C and C++ compiler. As an example, for Cygwin this could be c:\cygwin\bin\g++-3.exe for the C++ compiler and c:\cygwin\bin\gcc-3.exe for the C compiler.

    Go to top

  3. CMake/Cygwin: Can not find RC Compilers

    CMake Error:
    your RC compiler: CMAKE_RC_COMPILER-NOTFOUND was not found. Please set CMAKE_RC_COMPILER to a valid compiler path or name.

    Again you need to tick the check box Advanced and look for CMAKE_RC_COMPILER. For Cygwin or MinGW on Windows, it needs a file called windres.exe (e.g., C:\cygwin\bin\windres.exe).

    Go to top

  4. FORTE is C++, why are you then using the C-style include files for the standard c library instead of the C++ style include files?

    The main reason for this is that not all platforms provide the correct C++ include files. This especially applies to real-time OS such as eCos where you can freely configure the supported features. Using C++ style C include files on these platforms would pull lots of stuff from the compilers in and result in a bigger image or even worse it would not compile. So as to current experience, C style include files are more reliable.

    Go to top

  5. Within my FORTE console, I get UDP-Socket Send failed: Network is unreachable

    Consider to explicitly set up multicast IP routing in the kernel with the route command. This has been an issue on Raspberry Pi, where executing the following command resolved the problem:

    route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0

    The IPs are the desired multicast IPs.

    Go to top

  6. Within my FORTE console, I get connection closed by peer

    The TCP port is opened by a server in the RMT_RES. This server handles the communication with the tool for download and monitoring. The message indicates the end of the download process when 4diac IDE disconnects.

    Go to top

Or Go to the Start Here Page