Siemens Simatic S7-1500 CPU 1505SPF Instructions De Service page 70

Table des Matières

Publicité

Mise en service dans STEP 7
5.11 Chargement du système PC
3. Après le téléchargement de la station PC, le système cible est redémarré. Pour
télécharger la CPU automatiquement après le démarrage, sélectionnez l'option
"WaitOnReboot".
Exemple de code pour l'option "WaitOnReboot" :
//Post Download Configuration Delegate
DownloadConfigurationDelegate postDownloadForPcStation = downloadConfiguration =>
{
};
4. Poursuivez la procédure de chargement.
Le code suivant permet de vous assurer que la procédure de chargement de la station
PC est terminée :
DownloadResult downloadResult = null;
try
{
preDownloadForPcStation, postDownloadForPcStation, DownloadOptions.Hardware);
}
catch (EngineeringTargetInvocationException e)
{
}
downloadResult = null;
70
WaitOnReboot waitOnReboot = downloadConfiguration as WaitOnReboot;
if (waitOnReboot != null)
{
//In case user does not want to wait...
waitOnReboot.CurrentSelection = WaitOnRebootSelections.NoAction;
//In case user wants to wait... This is the default option anyway...
//waitOnReboot.CurrentSelection = WaitOnRebootSelections.Wait; return;
}
//WE FIRST DOWNLOAD PC-STATION
downloadResult = downloadProviderStationManager.Download(targetConfiguration,
if (DownloadResultState.Error != downloadResult.State)
{
Console.WriteLine("The download is successful for pc-station");
}
Console.WriteLine("Exception Thrown, Message: " + e.Message.ToString());
CPU 1505SP (F/T/TF), CPU 1507S (F), CPU 1508S (F) Version 20.8
Instructions de service, 12/2019, A5E32565331-AG

Publicité

Table des Matières
loading

Table des Matières