25 lines
684 B
QBasic
25 lines
684 B
QBasic
Attribute VB_Name = "modFM85P"
|
|
|
|
|
|
|
|
' Konstanten der Fehlermeldungen
|
|
Global Const FM85P_ERR_TIMEOUT = 1
|
|
Global Const FM85P_ERR_TIMEOUT_D = "Timeout oder Fehler im Befehl"
|
|
|
|
Global Const FM85P_ERR_NOANSWER = 2
|
|
Global Const FM85P_ERR_NOANSWER_D = "Keine Antwort vom FM85P"
|
|
|
|
Global Const FM85P_ERR_UNKNOWNANSWER = 3
|
|
Global Const FM85P_ERR_UNKNOWNANSWER_D = "Unbekannte Antwort vom FM85P"
|
|
|
|
Global Const FM85P_ERR_BUS = 10
|
|
Global Const FM85P_ERR_BUS_D = "Schnittstellenfehler"
|
|
|
|
Global Const FMBUS_ERR_SEND = 20
|
|
Global Const FMBUS_ERR_SEND_D = "Fehler beim Senden auf den Bus"
|
|
|
|
Global Const FMBUS_ERR_RECEIVE = 21
|
|
Global Const FMBUS_ERR_RECEIVE_D = "Fehler beim Empfangen von Daten vom Bus"
|
|
|
|
|