WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

Code C in Simulink implementieren mit S-Function

 

Samrouge
Forum-Newbie

Forum-Newbie


Beiträge: 1
Anmeldedatum: 18.12.15
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 18.12.2015, 17:18     Titel: Code C in Simulink implementieren mit S-Function
  Antworten mit Zitat      
Hallo ,
Für eine Projekt , soll ich 2 Programmen in C (linux) schreiben , die miteinander kommunizieren anhand der Shared memory .
Dann soll ich die zweite Programme in Simulink implementieren anhand der S-Function .
Dann muss der erste Programme mit Simulink(zweite Programm) dieses mal kommunizieren .
Kann jemand bitte mir helfen meine code in Simulink schreiben ?
Und was ist der Befehl in Konsole (linux) für die Kommunication zwichen erste Programme und Simulink ?
Hier ist der code von der zweite Programme :

Code:
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/sem.h>
#include <stdio.h>
#include <stdlib.h>

#define CLEF 666

#define LONGUEUR_SEGMENT 512


int main(int argc,char *argv[])
{
  int semaphores;
  int memoirePartagee;
  struct sembuf manipSemaphores;
  char *attacheMoi;
 

  if ((memoirePartagee=shmget(CLEF,LONGUEUR_SEGMENT,0600)) == -1)
  {
    puts("Unable to access the shared memory segment");
    exit(1);
  }


  if ((semaphores=semget(CLEF,2,0600)) == -1)
  {
    puts("Unable to access the semaphore");
    exit(1);
  }
 
  /* Operation P(1) => we ask to access the resource */

  manipSemaphores.sem_num=0;
  manipSemaphores.sem_op=-1;

  semop(semaphores,&manipSemaphores,1);

  puts("I request to enter the resource");fflush(stdout);

  attacheMoi=shmat(memoirePartagee,NULL,0);


  if ((int)(*attacheMoi)==-1)
  {
    puts("Unable to attach !");
    exit(1);
  }
  else
  {
    printf("Address of attachment : %p \n",attacheMoi);
    puts("Contents of a memory of attachment ");
    puts(attacheMoi);
    shmdt(attacheMoi);
    manipSemaphores.sem_num=0;
    manipSemaphores.sem_op=1;
    semop(semaphores,&manipSemaphores,1);
  }
 

  puts("Unlock the other processes");
  fflush(stdout);

  /* Unlock the waiting semaphore*/

  manipSemaphores.sem_num=1;
  manipSemaphores.sem_op=-1;
  semop(semaphores,&manipSemaphores,1);
 
 
  return 0;
}
 
Private Nachricht senden Benutzer-Profile anzeigen


Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

Du kannst Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.
Du kannst Dateien in diesem Forum posten
Du kannst Dateien in diesem Forum herunterladen
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2024 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.