| 1 | # Taken from the NXC readme.txt |
|---|
| 2 | |
|---|
| 3 | Acquire(mutex) |
|---|
| 4 | Release(mutex) |
|---|
| 5 | |
|---|
| 6 | Precedes(task1, task2, ..., taskn) |
|---|
| 7 | Follows(task1, task2, ..., taskn) |
|---|
| 8 | |
|---|
| 9 | ButtonCount(btn, reset) |
|---|
| 10 | ButtonPressed(btn, reset) |
|---|
| 11 | ReadButtonEx(btn, reset, pressed, count) |
|---|
| 12 | |
|---|
| 13 | ClearSensor(port) |
|---|
| 14 | ResetSensor(port) |
|---|
| 15 | Sensor(port) |
|---|
| 16 | SensorUS(port) |
|---|
| 17 | SetSensorLight(port) |
|---|
| 18 | SetSensorSound(port) |
|---|
| 19 | SetSensorTouch(port) |
|---|
| 20 | SetSensorLowspeed(port) |
|---|
| 21 | SetSensorType(port, type) |
|---|
| 22 | SetSensorMode(port, mode) |
|---|
| 23 | SetInput(port, field, value) |
|---|
| 24 | GetInput(port, field) |
|---|
| 25 | SensorType(p) |
|---|
| 26 | SensorMode(p) |
|---|
| 27 | SensorRaw(p) |
|---|
| 28 | SensorNormalized(p) |
|---|
| 29 | SensorScaled(p) |
|---|
| 30 | SensorInvalid(p) |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | FirstTick() |
|---|
| 34 | CurrentTick() |
|---|
| 35 | Wait(ms) |
|---|
| 36 | ResetSleepTimer() |
|---|
| 37 | |
|---|
| 38 | IOMA(num) |
|---|
| 39 | SetIOMA(num) |
|---|
| 40 | FreeMemory() |
|---|
| 41 | BatteryLevel() |
|---|
| 42 | PowerDown() |
|---|
| 43 | RebootInFirmwareMode() |
|---|
| 44 | |
|---|
| 45 | ClearScreen() |
|---|
| 46 | NumOut(x, y, number, cls=false) |
|---|
| 47 | TextOut(x, y, string, cls=false) |
|---|
| 48 | GraphicOut(x, y, filename, cls=false) |
|---|
| 49 | GraphicOutEx(x, y, filename, vars, cls=false) |
|---|
| 50 | CircleOut(x, y, radius, cls=false) |
|---|
| 51 | LineOut(x1, y1, x2, y2, cls=false) |
|---|
| 52 | PointOut(x, y, cls=false) |
|---|
| 53 | RectOut(x, y, width, height, cls=false) |
|---|
| 54 | ResetScreen() |
|---|
| 55 | |
|---|
| 56 | Coast(ports) |
|---|
| 57 | Float(ports) |
|---|
| 58 | Off(ports) |
|---|
| 59 | OnFwd(ports, power) |
|---|
| 60 | OnRev(ports, power) |
|---|
| 61 | OnFwdReg(ports, power, regmode) |
|---|
| 62 | OnRevReg(ports, power, regmode) |
|---|
| 63 | OnFwdSync(ports, power, turnpct) |
|---|
| 64 | OnRevSync(ports, power, turnpct) |
|---|
| 65 | CoastEx(ports, reset) |
|---|
| 66 | OffEx(ports, reset) |
|---|
| 67 | OnFwdEx(ports, power, reset) |
|---|
| 68 | OnRevEx(ports, power, reset) |
|---|
| 69 | OnFwdRegEx(ports, power, regmode, reset) |
|---|
| 70 | OnRevRegEx(ports, power, regmode, reset) |
|---|
| 71 | OnFwdSyncEx(ports, power, turnpct, reset) |
|---|
| 72 | OnRevSyncEx(ports, power, turnpct, reset) |
|---|
| 73 | RotateMotor(ports, power, angle) |
|---|
| 74 | RotateMotorEx(ports, power, angle, turnpct, sync, stop) |
|---|
| 75 | RotateMotorPID(ports, power, angle, p, i, d) |
|---|
| 76 | RotateMotorExPID(ports, power, angle, turnpct, sync, stop, p, i, d) |
|---|
| 77 | |
|---|
| 78 | SetOutput(ports, field1, value1, ..., fieldN, valueN) |
|---|
| 79 | |
|---|
| 80 | GetOutput(port, field) |
|---|
| 81 | MotorMode(p) |
|---|
| 82 | MotorPower(p) |
|---|
| 83 | MotorActualSpeed(p) |
|---|
| 84 | MotorTachoCount(p) |
|---|
| 85 | MotorTachoLimit(p) |
|---|
| 86 | MotorRunState(p) |
|---|
| 87 | MotorTurnRatio(p) |
|---|
| 88 | MotorRegulation(p) |
|---|
| 89 | MotorOverload(p) |
|---|
| 90 | MotorRegPValue(p) |
|---|
| 91 | MotorRegIValue(p) |
|---|
| 92 | MotorRegDValue(p) |
|---|
| 93 | MotorBlockTachoCount(p) |
|---|
| 94 | MotorRotationCount(p) |
|---|
| 95 | |
|---|
| 96 | ResetTachoCount(ports) |
|---|
| 97 | ResetBlockTachoCount(ports) |
|---|
| 98 | ResetRotationCount(ports) |
|---|
| 99 | ResetAllTachoCounts(ports) |
|---|
| 100 | |
|---|
| 101 | PlayFile(filename) |
|---|
| 102 | PlayFileEx(filename, volume, loop) |
|---|
| 103 | PlayTone(frequency, duration) |
|---|
| 104 | PlayToneEx(frequency, duration, volume, loop) |
|---|
| 105 | SoundFlags() |
|---|
| 106 | SoundState() |
|---|
| 107 | StopSound() |
|---|
| 108 | |
|---|
| 109 | Random() // signed word value |
|---|
| 110 | Random(max) // unsigned word value |
|---|
| 111 | |
|---|
| 112 | start taskname |
|---|
| 113 | ExitTo(taskname) |
|---|
| 114 | Stop(bvalue) |
|---|
| 115 | |
|---|
| 116 | abs(n) |
|---|
| 117 | sign(n) |
|---|
| 118 | |
|---|
| 119 | StrToNum(str) |
|---|
| 120 | StrLen(str) |
|---|
| 121 | StrIndex(str, idx) |
|---|
| 122 | |
|---|
| 123 | str = NumToStr(num) |
|---|
| 124 | str = StrCat(str1, str2, ..., strN) |
|---|
| 125 | str = SubStr(string, idx, len) |
|---|
| 126 | str = StrReplace(string, idx, strnew) |
|---|
| 127 | str = Flatten(num) |
|---|
| 128 | str = ByteArrayToStr(a) |
|---|
| 129 | |
|---|
| 130 | ByteArrayToStrEx(a, s) |
|---|
| 131 | StrToByteArray(s, a) |
|---|
| 132 | num = ArrayLen(a) |
|---|
| 133 | ArrayInit(a, val, cnt) |
|---|
| 134 | ArraySubset(aout, asrc, idx, len) |
|---|
| 135 | ArrayBuild(aout, src1, ..., srcN) |
|---|
| 136 | |
|---|
| 137 | GetLSInputBuffer(p, offset, cnt, data) |
|---|
| 138 | GetLSOutputBuffer(p, offset, cnt, data) |
|---|
| 139 | GetDisplayNormal(x, line, cnt, data) |
|---|
| 140 | GetDisplayPopup(x, line, cnt, data) |
|---|
| 141 | GetBTInputBuffer(offset, cnt, data) |
|---|
| 142 | GetBTOutputBuffer(offset, cnt, data) |
|---|
| 143 | GetHSInputBuffer(offset, cnt, data) |
|---|
| 144 | GetHSOutputBuffer(offset, cnt, data) |
|---|
| 145 | GetUSBInputBuffer(offset, cnt, data) |
|---|
| 146 | GetUSBOutputBuffer(offset, cnt, data) |
|---|
| 147 | GetUSBPollBuffer(offset, cnt, data) |
|---|
| 148 | |
|---|
| 149 | str = BTDeviceName(p) |
|---|
| 150 | str = BTConnectionName(p) |
|---|
| 151 | str = BTConnectionPinCode(p) |
|---|
| 152 | str = BrickDataName() |
|---|
| 153 | |
|---|
| 154 | GetBTDeviceAddress(p, data) |
|---|
| 155 | GetBTConnectionAddress(p, data) |
|---|
| 156 | GetBrickDataAddress(data) |
|---|
| 157 | |
|---|
| 158 | SoundFrequency() |
|---|
| 159 | SoundDuration() |
|---|
| 160 | SoundSampleRate() |
|---|
| 161 | SoundMode() |
|---|
| 162 | SoundVolume() |
|---|
| 163 | |
|---|
| 164 | ButtonPressCount(b) |
|---|
| 165 | ButtonLongPressCount(b) |
|---|
| 166 | ButtonShortReleaseCount(b) |
|---|
| 167 | ButtonLongReleaseCount(b) |
|---|
| 168 | ButtonReleaseCount(b) |
|---|
| 169 | ButtonState(b) |
|---|
| 170 | |
|---|
| 171 | CommandFlags() |
|---|
| 172 | UIState() |
|---|
| 173 | UIButton() |
|---|
| 174 | VMRunState() |
|---|
| 175 | BatteryState() |
|---|
| 176 | BluetoothState() |
|---|
| 177 | UsbState() |
|---|
| 178 | SleepTimeout() |
|---|
| 179 | SleepTimer() |
|---|
| 180 | RechargeableBattery() |
|---|
| 181 | Volume() |
|---|
| 182 | OnBrickProgramPointer() |
|---|
| 183 | |
|---|
| 184 | CustomSensorZeroOffset(p) |
|---|
| 185 | CustomSensorPercentFullScale(p) |
|---|
| 186 | CustomSensorActiveStatus(p) |
|---|
| 187 | SensorBoolean(p) |
|---|
| 188 | SensorDigiPinsDirection(p) |
|---|
| 189 | SensorDigiPinsStatus(p) |
|---|
| 190 | SensorDigiPinsOutputLevel(p) |
|---|
| 191 | |
|---|
| 192 | MotorPwnFreq() |
|---|
| 193 | |
|---|
| 194 | LSInputBufferInPtr(p) |
|---|
| 195 | LSInputBufferOutPtr(p) |
|---|
| 196 | LSInputBufferBytesToRx(p) |
|---|
| 197 | LSOutputBufferInPtr(p) |
|---|
| 198 | LSOutputBufferOutPtr(p) |
|---|
| 199 | LSOutputBufferBytesToRx(p) |
|---|
| 200 | LSMode(p) |
|---|
| 201 | LSChannelState(p) |
|---|
| 202 | LSErrorType(p) |
|---|
| 203 | LSState() |
|---|
| 204 | LSSpeed() |
|---|
| 205 | |
|---|
| 206 | DisplayEraseMask() |
|---|
| 207 | DisplayUpdateMask() |
|---|
| 208 | DisplayDisplay() |
|---|
| 209 | DisplayFlags() |
|---|
| 210 | DisplayTextLinesCenterFlags() |
|---|
| 211 | |
|---|
| 212 | BTDeviceClass(p) |
|---|
| 213 | BTDeviceStatus(p) |
|---|
| 214 | BTConnectionClass(p) |
|---|
| 215 | BTConnectionHandleNum(p) |
|---|
| 216 | BTConnectionStreamStatus(p) |
|---|
| 217 | BTConnectionLinkQuality(p) |
|---|
| 218 | BrickDataBluecoreVersion() |
|---|
| 219 | BrickDataBtStateStatus() |
|---|
| 220 | BrickDataBtHardwareStatus() |
|---|
| 221 | BrickDataTimeoutValue() |
|---|
| 222 | BTInputBufferInPtr() |
|---|
| 223 | BTInputBufferOutPtr() |
|---|
| 224 | BTOutputBufferInPtr() |
|---|
| 225 | BTOutputBufferOutPtr() |
|---|
| 226 | HSInputBufferInPtr() |
|---|
| 227 | HSInputBufferOutPtr() |
|---|
| 228 | HSOutputBufferInPtr() |
|---|
| 229 | HSOutputBufferOutPtr() |
|---|
| 230 | USBInputBufferInPtr() |
|---|
| 231 | USBInputBufferOutPtr() |
|---|
| 232 | USBOutputBufferInPtr() |
|---|
| 233 | USBOutputBufferOutPtr() |
|---|
| 234 | USBPollBufferInPtr() |
|---|
| 235 | USBPollBufferOutPtr() |
|---|
| 236 | BTDeviceCount() |
|---|
| 237 | BTDeviceNameCount() |
|---|
| 238 | HSFlags() |
|---|
| 239 | HSSpeed() |
|---|
| 240 | HSState() |
|---|
| 241 | USBState() |
|---|
| 242 | |
|---|
| 243 | SetSoundFrequency(n) |
|---|
| 244 | SetSoundDuration(n) |
|---|
| 245 | SetSoundSampleRate(n) |
|---|
| 246 | SetSoundFlags(n) |
|---|
| 247 | SetSoundState(n) |
|---|
| 248 | SetSoundMode(n) |
|---|
| 249 | SetSoundVolume(n) |
|---|
| 250 | |
|---|
| 251 | SetCommandFlags(n) |
|---|
| 252 | SetUIState(n) |
|---|
| 253 | SetUIButton(n) |
|---|
| 254 | SetVMRunState(n) |
|---|
| 255 | SetBatteryState(n) |
|---|
| 256 | SetBluetoothState(n) |
|---|
| 257 | SetUsbState(n) |
|---|
| 258 | SetSleepTimeout(n) |
|---|
| 259 | SetSleepTimer(n) |
|---|
| 260 | SetVolume(n) |
|---|
| 261 | SetOnBrickProgramPointer(n) |
|---|
| 262 | ForceOff(n) |
|---|
| 263 | |
|---|
| 264 | SetCustomSensorZeroOffset(p, n) |
|---|
| 265 | SetCustomSensorPercentFullScale(p, n) |
|---|
| 266 | SetCustomSensorActiveStatus(p, n) |
|---|
| 267 | SetSensorBoolean(p, n) |
|---|
| 268 | SetSensorDigiPinsDirection(p, n) |
|---|
| 269 | SetSensorDigiPinsStatus(p, n) |
|---|
| 270 | SetSensorDigiPinsOutputLevel(p, n) |
|---|
| 271 | |
|---|
| 272 | SetMotorPwnFreq(n) |
|---|
| 273 | |
|---|
| 274 | SetLSInputBuffer(p, offset, cnt, data) |
|---|
| 275 | SetLSInputBufferInPtr(p, n) |
|---|
| 276 | SetLSInputBufferOutPtr(p, n) |
|---|
| 277 | SetLSInputBufferBytesToRx(p, n) |
|---|
| 278 | SetLSOutputBuffer(p, offset, cnt, data) |
|---|
| 279 | SetLSOutputBufferInPtr(p, n) |
|---|
| 280 | SetLSOutputBufferOutPtr(p, n) |
|---|
| 281 | SetLSOutputBufferBytesToRx(p, n) |
|---|
| 282 | SetLSMode(p, n) |
|---|
| 283 | SetLSChannelState(p, n) |
|---|
| 284 | SetLSErrorType(p, n) |
|---|
| 285 | SetLSState(n) |
|---|
| 286 | SetLSSpeed(n) |
|---|
| 287 | |
|---|
| 288 | SetDisplayEraseMask(n) |
|---|
| 289 | SetDisplayUpdateMask(n) |
|---|
| 290 | SetDisplayDisplay(n) |
|---|
| 291 | SetDisplayFlags(n) |
|---|
| 292 | SetDisplayTextLinesCenterFlags(n) |
|---|
| 293 | SetDisplayNormal(x, line, cnt, data) |
|---|
| 294 | SetDisplayPopup(x, line, cnt, data) |
|---|
| 295 | |
|---|
| 296 | SetBTDeviceName(p, str) |
|---|
| 297 | SetBTDeviceAddress(p, addr) |
|---|
| 298 | SetBTConnectionName(p, str) |
|---|
| 299 | SetBTConnectionPinCode(p, code) |
|---|
| 300 | SetBTConnectionAddress(p, addr) |
|---|
| 301 | SetBrickDataName(str) |
|---|
| 302 | SetBrickDataAddress(p, addr) |
|---|
| 303 | SetBTDeviceClass(p, n) |
|---|
| 304 | SetBTDeviceStatus(p, n) |
|---|
| 305 | SetBTConnectionClass(p, n) |
|---|
| 306 | SetBTConnectionHandleNum(p, n) |
|---|
| 307 | SetBTConnectionStreamStatus(p, n) |
|---|
| 308 | SetBTConnectionLinkQuality(p, n) |
|---|
| 309 | SetBrickDataBluecoreVersion(n) |
|---|
| 310 | SetBrickDataBtStateStatus(n) |
|---|
| 311 | SetBrickDataBtHardwareStatus(n) |
|---|
| 312 | SetBrickDataTimeoutValue(n) |
|---|
| 313 | SetBTInputBuffer(offset, cnt, data) |
|---|
| 314 | SetBTInputBufferInPtr(n) |
|---|
| 315 | SetBTInputBufferOutPtr(n) |
|---|
| 316 | SetBTOutputBuffer(offset, cnt, data) |
|---|
| 317 | SetBTOutputBufferInPtr(n) |
|---|
| 318 | SetBTOutputBufferOutPtr(n) |
|---|
| 319 | SetHSInputBuffer(offset, cnt, data) |
|---|
| 320 | SetHSInputBufferInPtr(n) |
|---|
| 321 | SetHSInputBufferOutPtr(n) |
|---|
| 322 | SetHSOutputBuffer(offset, cnt, data) |
|---|
| 323 | SetHSOutputBufferInPtr(n) |
|---|
| 324 | SetHSOutputBufferOutPtr(n) |
|---|
| 325 | SetUSBInputBuffer(offset, cnt, data) |
|---|
| 326 | SetUSBInputBufferInPtr(n) |
|---|
| 327 | SetUSBInputBufferOutPtr(n) |
|---|
| 328 | SetUSBOutputBuffer(offset, cnt, data) |
|---|
| 329 | SetUSBOutputBufferInPtr(n) |
|---|
| 330 | SetUSBOutputBufferOutPtr(n) |
|---|
| 331 | SetUSBPollBuffer(offset, cnt, data) |
|---|
| 332 | SetUSBPollBufferInPtr(n) |
|---|
| 333 | SetUSBPollBufferOutPtr(n) |
|---|
| 334 | SetBTDeviceCount(n) |
|---|
| 335 | SetBTDeviceNameCount(n) |
|---|
| 336 | SetHSFlags(n) |
|---|
| 337 | SetHSSpeed(n) |
|---|
| 338 | SetHSState(n) |
|---|
| 339 | SetUSBState(n) |
|---|
| 340 | |
|---|
| 341 | CreateFile(fname, fsize, handle) |
|---|
| 342 | OpenFileAppend(fname, fsize, handle) |
|---|
| 343 | OpenFileRead(fname, fsize, handle) |
|---|
| 344 | CloseFile(handle) |
|---|
| 345 | ResolveHandle(fname, handle, writeable) |
|---|
| 346 | RenameFile(oldname, newname) |
|---|
| 347 | DeleteFile(fname) |
|---|
| 348 | Read(handle, n) |
|---|
| 349 | ReadLn(handle, n) |
|---|
| 350 | ReadBytes(handle, len, buf) |
|---|
| 351 | Write(handle, n) |
|---|
| 352 | WriteLn(handle, n) |
|---|
| 353 | WriteString(handle, str, cnt) |
|---|
| 354 | WriteLnString(handle, str, cnt) |
|---|
| 355 | WriteBytes(handle, buf, cnt) |
|---|
| 356 | WriteBytesEx(handle, len, buf) |
|---|
| 357 | |
|---|
| 358 | SendMessage(queue, msg) |
|---|
| 359 | ReceiveMessage(queue, clear, msg) |
|---|
| 360 | |
|---|
| 361 | LowspeedStatus(port, bready) |
|---|
| 362 | LowspeedBytesReady(port) |
|---|
| 363 | LowspeedCheckStatus(port) |
|---|
| 364 | LowspeedWrite(port, retlen, buffer) |
|---|
| 365 | LowspeedRead(port, buflen, buffer) |
|---|
| 366 | |
|---|
| 367 | I2CStatus(port, bready) |
|---|
| 368 | I2CBytesReady(port) |
|---|
| 369 | I2CCheckStatus(port) |
|---|
| 370 | I2CWrite(port, retlen, buffer) |
|---|
| 371 | I2CRead(port, buflen, buffer) |
|---|
| 372 | I2CBytes(port, inbuf, count, outbuf) |
|---|
| 373 | |
|---|
| 374 | BluetoothStatus(conn) |
|---|
| 375 | BluetoothWrite(conn, buffer) |
|---|
| 376 | |
|---|
| 377 | result = ReceiveRemoteBool(queue, clear, bval) |
|---|
| 378 | result = ReceiveRemoteNumber(queue, clear, val) |
|---|
| 379 | result = ReceiveRemoteString(queue, clear, str) |
|---|
| 380 | result = ReceiveRemoteMessageEx(queue, clear, str, val, bval) |
|---|
| 381 | result = SendRemoteBool(conn, queue, bval) |
|---|
| 382 | result = SendRemoteNumber(conn, queue, val) |
|---|
| 383 | result = SendRemoteString(conn, queue, str) |
|---|
| 384 | result = SendResponseBool(queue, bval) |
|---|
| 385 | result = SendResponseNumber(queue, val) |
|---|
| 386 | result = SendResponseString(queue, str) |
|---|
| 387 | |
|---|
| 388 | result = RemoteMessageRead(conn, queue) |
|---|
| 389 | result = RemoteMessageWrite(conn, queue, msg) // alias for SendRemoteString |
|---|
| 390 | result = RemoteStartProgram(conn, filename) |
|---|
| 391 | result = RemoteStopProgram(conn) |
|---|
| 392 | result = RemotePlaySoundFile(conn, filename, bloop) |
|---|
| 393 | result = RemotePlayTone(conn, frequency, duration) |
|---|
| 394 | result = RemoteStopSound(conn) |
|---|
| 395 | result = RemoteKeepAlive(conn) |
|---|
| 396 | result = RemoteResetScaledValue(conn, port) |
|---|
| 397 | result = RemoteResetMotorPosition(conn, port, brelative) |
|---|
| 398 | result = RemoteSetInputMode(conn, port, type, mode) |
|---|
| 399 | result = RemoteSetOutputState(conn, port, speed, mode, regmode, turnpct, runstate, tacholimit) |
|---|
| 400 | |
|---|
| 401 | result = Sqrt(X) |
|---|
| 402 | result = Sin(X) |
|---|
| 403 | result = Cos(X) |
|---|
| 404 | result = Asin(X) |
|---|
| 405 | result = Acos(X) |
|---|
| 406 | |
|---|
| 407 | SysCall(func, args) |
|---|
| 408 | |
|---|
| 409 | SysFileOpenRead(FileOpenType & args) |
|---|
| 410 | SysFileOpenWrite(FileOpenType & args) |
|---|
| 411 | SysFileOpenAppend(FileOpenType & args) |
|---|
| 412 | SysFileRead(FileReadWriteType & args) |
|---|
| 413 | SysFileWrite(FileReadWriteType & args) |
|---|
| 414 | SysFileClose(FileCloseType & args) |
|---|
| 415 | SysFileResolveHandle(FileResolveHandleType & args) |
|---|
| 416 | SysFileRename(FileRenameType & args) |
|---|
| 417 | SysFileDelete(FileDeleteType & args) |
|---|
| 418 | |
|---|
| 419 | SysSoundPlayFile(SoundPlayFileType & args) |
|---|
| 420 | SysSoundPlayTone(SoundPlayToneType & args) |
|---|
| 421 | SysSoundGetState(SoundGetStateType & args) |
|---|
| 422 | SysSoundSetState(SoundSetStateType & args) |
|---|
| 423 | |
|---|
| 424 | SysDrawText(DrawTextType & args) |
|---|
| 425 | SysDrawPoint(DrawPointType & args) |
|---|
| 426 | SysDrawLine(DrawLineType & args) |
|---|
| 427 | SysDrawCircle(DrawCircleType & args) |
|---|
| 428 | SysDrawRect(DrawRectType & args) |
|---|
| 429 | SysDrawGraphic(DrawGraphicType & args) |
|---|
| 430 | SysSetScreenMode(SetScreenModeType & args) |
|---|
| 431 | |
|---|
| 432 | SysReadButton(ReadButtonType & args) |
|---|
| 433 | |
|---|
| 434 | SysCommLSWrite(CommLSWriteType & args) |
|---|
| 435 | SysCommLSRead(CommLSReadType & args) |
|---|
| 436 | SysCommLSCheckStatus(CommLSCheckStatusType & args) |
|---|
| 437 | |
|---|
| 438 | SysRandomNumber(RandomNumberType & args) |
|---|
| 439 | |
|---|
| 440 | SysGetStartTick(GetStartTickType & args) |
|---|
| 441 | |
|---|
| 442 | SysMessageWrite(MessageWriteType & args) |
|---|
| 443 | SysMessageRead(MessageReadType & args) |
|---|
| 444 | |
|---|
| 445 | SysCommBTWrite(CommBTWriteType & args) |
|---|
| 446 | SysCommBTCheckStatus(CommBTCheckStatusType & args) |
|---|
| 447 | |
|---|
| 448 | SysKeepAlive(KeepAliveType & args) |
|---|
| 449 | |
|---|
| 450 | SysIOMapRead(IOMapReadType & args) |
|---|
| 451 | SysIOMapWrite(IOMapWriteType & args) |
|---|
| 452 | |
|---|
| 453 | SysIOMapReadByID(IOMapReadByIDType & args) |
|---|
| 454 | SysIOMapWriteByID(IOMapWriteByIDType & args) |
|---|
| 455 | |
|---|
| 456 | SysDisplayExecuteFunction(DisplayExecuteFunctionType & args) |
|---|
| 457 | SysCommExecuteFunction(CommExecuteFunctionType & args) |
|---|
| 458 | SysLoaderExecuteFunction(LoaderExecuteFunctionType & args) |
|---|
| 459 | |
|---|