421 views
in Embedded Wizard Studio by
Is possible to run some sort of script from Embedded Wizard studio?? How??
by
rephrase my question: 
I would like to run a .sh script on my raspberry, using my emebdded wizard application. I tried to include libraries like stdlib and use the system's command, but it is not recognize by embedded and it gives me an error, how can do??

1 Answer

0 votes
by

[SOLVED]
For include standard library for the gcc compiler, it's enought to declare in the block inline:

#include <stdlib.h>      //Between <> because, Embedded wizard search in the compiler's directory this tsandard library without manually including this files

After this, use command, in Device Class:

system("command that you want to use in linux");

 

"

Ask Embedded Wizard

Welcome to the question and answer site for Embedded Wizard users and UI developers.

Ask your question and receive answers from the Embedded Wizard support team or from other members of the community!

Embedded Wizard Website | Privacy Policy | Imprint

...