0
Answered

Unassigned iqandesign 7

Dave 1 year ago in IQANdesign updated by Gustav Widén (System support) 1 year ago 1

So I am totally new to this. I  used the Tools drop down to add some signals from the CAN j1939 database, seems to show the signals I expect and I can see them in my project, can use them etc etc. However it says they are 'unassigned'. Searching shows lots of ways to 'assign' them for all sorts of older versions of IQAN which dont appear relevant in IQAN 7 - for example I cant find the 'application logic' screen apparently in 6.03 but have found system layout which allowed me to create a module and drag and dropping from my application window to that seemed to allocate all bar TC1. Any idea why this fairly difficult to find a description of doesnt work for TC1? 

I am sure the system is really good once you get to understand it all, just learning so bear with me while I suffer as I always do with something new  :0

Thanks in advance.

0

Language memory usage in non-display masters

Johan Palm 1 year ago in IQANdesign updated by Gustav Widén (System support) 1 year ago 3

It appears that text and translations thereof are stored locally on the master controller on which it is declared, even if the master in itself has no means of displaying it (e.g. on an MCx as opposed to an MDx).


Couldn't the text instead be stored on the master display(s) on which the text is actually shown, to reduce the flash memory usage on controllers that do not have a display? Depending on your implementation, I guess such a modification also has the potential to reduce the Master/Diagnostics bus load.

Text can easily occupy hundreds of KB, which is a substantial part of the MCx flash memory.

Thanks!

0

variables used to name files

Nathan Depcik 1 year ago in IQANscript updated 1 year ago 2

could IQANscript support using variables to name files for "script report" and "save variables". I have tried surrounding the variable with percentage signs and it treats it as a character. 


this can be useful for users to rename the files to unique names such as the Machine ID and be able to store it without needing to rename it after.

0

Classic OBD CAN bus

mojtaba alavi 1 year ago in IQANdesign updated by Matt 1 year ago 1

how we can use IQAN-MD4 to communicate with a module that it only send or receive messages via classic OBD CAN?

0

Subcontract service to improve big project architecture

A DOMS 1 year ago in IQANdesign updated 1 year ago 2

Hello,

Could you purpose a kind of subcontract service to help improving big project ? 

To review everything ?

All differents input/output, link between two MC43 and external devices... 

How to architecture every subfunction and modes ...

Maybe you have IQAN specialist in France you can recommend ?

0

4 Camera streams and Log Queue goes to 100%

mdonaldson 1 year ago in IQANdesign updated 1 year ago 1

While working on some screen navigation improvements I noticed on the MD4 with 4 cameras streaming on the same screen the Log Queue (SIC) creeps to 100% in 5% increments. We don't have anything that would be attempting to add to the logs. Cycle Util = 18%. With 2 camera streams it goes to 5% but then appears to catch up and goes back to 0%, then repeats.


It doesn't appear to affect anything so this is really curiosity.  (IQAN 6)

Image 4232

0

CAN bus status in channel

rrodriguezh111 1 year ago in IQANdesign updated by Gustav Widén (System support) 1 year ago 1

How can I monitor the status of can bus error? I want to know if it is possible to monitor this into a internal variable. Using a MC43 as master controller.

Image 4230

0

Simulink in External Function

Marcel 1 year ago in IQANdesign 0

Is it possible to place a Simulink model in an External function?

0

can IQAN 6.08 run on windows surface tablet

David Sullivan 1 year ago in IQANrun updated by Gustav Widén (System support) 1 year ago 1
0

else if

Grumpy Vern 1 year ago in IQANdesign updated by Christopher Fridstaden 1 year ago 1

Do consecutive else if statements stop at the first true? For example, I expect the code below makes result = 3.

if false then

result:=1

elseif false then

result:=2

elseif true then

result:=3

elseif true then 

result:=4

else

result:=5

endif