Jump to content

[C/C++] Aufruf von industrial_quad_relay_get_monoflop


Guest LinTec

Recommended Posts

Moin,

das stimmt zwar, aber leider bin ich nicht so Fit darin, dass ich direkt verstehen wie das aufzurufen ist. Ich verstehe nur, dass die drei letzten Parameter zurück gegeben werden sollen, aber wie die Syntax in C aussehen muss, damit ich via printf da etwas zurück bekommen würde verstehe ich noch nicht so ganz? Vielleicht könnt ihr mir helfen?

Link to comment
Share on other sites

industrial_quad_relay_get_monoflop() erwartet Pointer auf Variablen in die es dann die drei Werte schreiben kann. Hier ein Beispiel für Pin 0:

 

uint16_t value;
uint32_t time
uint32_t time_remaining;

industrial_quad_relay_get_monoflop(&iqr, 0, &value, &time, &time_remaining);

printf("value %u, time %u, time_remaining %u\n", value, time, time_remaining);

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...