Protocol_Protocol is standard SFENCE objects with driver.
Object have standard basic driver object functions.
Object Protocol_Protocol is used for sending and receiving events.
| Function name | Short description |
|---|---|
| Protocol_Protocol_Start | this function may be called before first call of functions Protocol_Protocol_Check, Protocol_Protocol_Can_Send, Protocol_Protocol_Can_Receive, Protocol_Protocol_Send_Message and Protocol_Protocol_Receive_Message |
| Protocol_Protocol_Stop | this function may be called after last call of functions Protocol_Protocol_Check, Protocol_Protocol_Can_Send, Protocol_Protocol_Can_Receive, Protocol_Protocol_Send_Message and Protocol_Protocol_Receive_Message |
| Protocol_Protocol_Check | Can protocol receive or send message? |
| Protocol_Protocol_Can_Send | Can protocol send message at the moment? |
| Protocol_Protocol_Can_Receive | Can protocol receive message at the moment? |
| Protocol_Protocol_Send_Message | send message to protocol |
| Protocol_Protocol_Receive_Message | receive a message from protocol |
| Protocol_Protocol_Receive_MessageUse | receive a message from protocol |
| Function type | Function name | Short description |
|---|---|---|
| fProtocol_Protocol_Start | f_start | would be call before call other of special API functions of object Protocol_Protocol |
| fProtocol_Protocol_Stop | f_stop | would be call after last call of other special API functions. |
| fProtocol_Protocol_Check | f_check | check if there is any message for receive or if message can be sent. |
| fProtocol_Protocol_Can_Send | f_can_send | check if any message can be sent. |
| fProtocol_Protocol_Can_Receive | f_can_receive | check if any message can be received |
| fProtocol_Protocol_Send_Message | f_send_message | send message |
| fProtocol_Protocol_Receive_Message | f_receive_message | receive message |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | |
Wiki: Basic:DriverObject:Functions
Wiki: Basic:DriverObject
Wiki: Object:Protocol_Protocol:DriverFunction:Check
Wiki: Object:Protocol_Protocol:DriverFunction:Start
Wiki: Object:Protocol_Protocol:Function:Can_Receive
Wiki: Object:Protocol_Protocol:Function:Can_Send
Wiki: Object:Protocol_Protocol:Function:Check
Wiki: Object:Protocol_Protocol:Function:Receive_Message
Wiki: Object:Protocol_Protocol:Function:Receive_MessageUse
Wiki: Object:Protocol_Protocol:Function:Send_Message
Wiki: Object:Protocol_Protocol:Function:Start
Wiki: Object:Protocol_Protocol:Function:Stop