Skip to content

SYS Tags (System Control)

Namespace prefix: 0x0C

The SYS namespace provides system management commands. Use with caution — these commands affect the E3DC hardware directly.

Commands

TagHexTypeDescription
SYS_REQ_SYSTEM_REBOOT0x0C000001NoneReboot the entire E3DC system
SYS_SYSTEM_REBOOT0x0C800001Reboot confirmation response
SYS_REQ_RESTART_APPLICATION0x0C000003NoneRestart the E3DC application only
SYS_RESTART_APPLICATION0x0C800003Restart confirmation response

Usage

csharp
// Restart application (less invasive)
var request = RscpRequest.Create()
    .Read(Sys.RestartApp);

// Full system reboot (more invasive)
var request = RscpRequest.Create()
    .Read(Sys.Reboot);

WARNING

SYS_REQ_SYSTEM_REBOOT performs a full hardware reboot. The system will be offline for several minutes. Only use this when necessary.

SYS_REQ_RESTART_APPLICATION restarts the E3DC software without a full reboot. The system recovers faster.

E3DC S10 Pro RSCP Client Library