437 views
in GUI Development by
I was going through your Masterclass Mondays tutorial series and in 3rd video you said about postsignal and idlesignal but did not get it, can you please explain with example ?

1 Answer

0 votes
by

Hello,

let me refer to our online documentation, chapter idlesignal and postsignal - it should explain all the details about triggering a slot method.

Does this answer your question?

Best regards,

Manfred.

by
Thanks for the replay, and i have another question is it possible to add images in svg format as image component?
by
Embedded Wizard can process files stored in the formats BMP, JPG, GIF, PNG and MJPEG.
by
Thanks, i'm running Dashboard example on my device and i see there is a deviceClass and an autoobject in Dashboard unit, my question is how to call any method from the same class from main.c (note:i exported the code to MCUXpresso ide )?

Here is my code.

 DashboardDeviceClass device = EwGetAutoObject( &DashboardDevice, DashboardDeviceClass );
  while(1)
   {
       for(int i = 0; i < 3000; i=i+250){
           device->Speed = i;
           for(int i = 0; i < 100000; i++ );
       }

       for(int i = 3000; i > 0; i=i-250){
                device->Speed = i;
                for(int i = 0; i < 100000; i++ );
            }

   }
by

Oh... You are implementing an endless loop. This will never work...

Let me refer to the articles Integrating with the device and Device Class and Device Driver, both are part of our online documentation. They explain all basics about natvie code and the integration of external software APIs or hardware drivers.

I hope this helps...

by
I want to where to call my method i mean in which API i should call my methods?

Embedded Wizard Website | Privacy Policy | Imprint

...