All public logs

Jump to navigation Jump to search

Combined display of all available logs of Opale Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 21:25, 26 March 2025 Administrator talk contribs created page R2D2 - StartSmsReceiving (Created page with "This command starts automatic SMS receiving on the specified GSM port. All received SMS will be read from SIM card, written to CDR file and then purged from SIM. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |StartSmsReceiving |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE'''<syntaxhighlight lang="text"> ~# StartSmsReceiving 0 </synt...") Tag: Visual edit
  • 21:23, 26 March 2025 Administrator talk contribs created page R2D2 - SimMemoryPurge (Created page with "This command clears all SMS storage area of the SIM currently assigned to the specified GSM port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |SimMemoryPurge |PortIndex |Error Code in case of error. |} '''OUTPUT''' None '''EXAMPLE'''<syntaxhighlight lang="text"> ~# SimMemoryPurge 0 SIM memory cleared </syntaxhighlight>") Tag: Visual edit
  • 21:20, 26 March 2025 Administrator talk contribs created page R2D2 - SetSmsParameters (Created page with "This command allows to set SMS Center address for the specified GSM port and to set the following parameteres : * delay between retry, * SMS validity, * Timeout (in seconds) for all SMS functions. :; RetryDelay :: Retry time must be a multiple of 5 in seconds. :: The default value is 120 seconds. :: 0 means no retry. :: {| class="wikitable" ! colspan="3" | |- !Value !Formula !Comments |- |0 to 143 |(Value+1) x 5 minutes |5 minutes intervals up to 12 hours |- |144 to 1...") Tag: Visual edit
  • 21:08, 26 March 2025 Administrator talk contribs created page R2D2 - SendSmsTextAndWaitDelivery (Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |AcceptCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# AcceptCall 0<br> CONNECTED<br> ~# AcceptCall 2<br> NO INCOMING CALL </syntaxhighlight> Category:SMS") Tag: 2017 source edit
  • 21:07, 26 March 2025 Administrator talk contribs created page R2D2 - SendSmsPduAndWaitDelivery (Created page with "This command sends a SMS using data from a specified PDU buffer on a given port and waits until the SMS Delivery Report is received or timeout (entered in seconds) expired. The SMS Center number can be specified as an optional parameter. Command returns as soon as the SMS is submitted to SMSC. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |SendSmsPduAndWaitDelivery |Port index, PDU buffer, [Timeout] |Error Code in case of...") Tag: 2017 source edit
  • 21:01, 26 March 2025 Administrator talk contribs created page R2D2 - SendSmsPdu (Created page with "This command sends a SMS using data from a specified PDU buffer on a given port. The SMS Center number can be specified as an optional parameter. Command returns as soon as the SMS is submitted to SMSC. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |SendSmsPdu |Port index, PDU buffer, [SMSC number, Timeout] |Error Code in case of error. |} '''OUTPUT''' "SMS SENT to %s %s\n", dest_number, sms_text [smsc_number] '''EX...") Tag: 2017 source edit
  • 20:52, 26 March 2025 Administrator talk contribs created page R2D2 - GetSmsParameters (Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |AcceptCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# AcceptCall 0<br> CONNECTED<br> ~# AcceptCall 2<br> NO INCOMING CALL </syntaxhighlight> Category:SMS") Tag: 2017 source edit
  • 20:43, 26 March 2025 Administrator talk contribs created page R2D2 - DecodePdu (Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |AcceptCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# AcceptCall 0<br> CONNECTED<br> ~# AcceptCall 2<br> NO INCOMING CALL </syntaxhighlight> Category:SMS") Tag: 2017 source edit
  • 17:50, 26 March 2025 Administrator talk contribs created page R2D2 - WaitCall (Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |AcceptCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# AcceptCall 0<br> CONNECTED<br> ~# AcceptCall 2<br> NO INCOMING CALL </syntaxhighlight> Category:Voice") Tag: 2017 source edit
  • 17:49, 26 March 2025 Administrator talk contribs created page R2D2 - WaitAndRejectCall (Created page with "This command allows to wait for an incoming call on the specified GSM port, and to reject it. An optional timeout (in seconds) can be specified. A reject code from Q.931 standard can be choosen as the call reject reason '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |WaitAndRejectCall |PortIndex,[Timeout(s)], [RejectCause] |Calling number, in the case of error, Error Code |} '''OUTPUT''' GSM port call status in the following format: "%s\...") Tag: Visual edit
  • 17:46, 26 March 2025 Administrator talk contribs created page R2D2 - WaitAndAcceptCall (Created page with "This command allows to wait for an incoming call on the specified GSM port, and to accept it. An optional timeout (in seconds) can be specified. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |WaitAndAcceptCall |PortIndex,[Timeout(s)] |Error Code in case of error. |} '''OUTPUT''' GSM port call status in the following format: "%s\n", call_status '''EXAMPLE'''<syntaxhighlight lang="text"> ~# WaitAndAcceptCall 1 CON...") Tag: Visual edit
  • 17:44, 26 March 2025 Administrator talk contribs created page R2D2 - WaitAcceptCallAndRecord (Created page with "This command allows to wait for an incoming call on the specified GSM port, to connect it and then to record voice to a specified WAV file (sample rate 8kHz, mono, 8 bits per sample, block-align 1, A-LAW coding). An optional timeout (in seconds) can be specified. Optional flag PCM16 can be added to record 16 bits per sample. Command returns as soon as call is connected and the Robot starts to record. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Ret...") Tag: Visual edit
  • 17:38, 26 March 2025 Administrator talk contribs created page R2D2 - StopRecording (Created page with "This command stops recording voice on the specified GSM port. Command returns as soon as the voice recording is stopped. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |StopRecording |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE'''<syntaxhighlight lang="text"> ~# StopRecording 0 RECORDING STOPPED ~# StopRecording 1 NO CALL </syntaxh...") Tag: Visual edit
  • 17:36, 26 March 2025 Administrator talk contribs created page R2D2 - SendDtmf (Created page with "This command plays a DTMF sequence in the existing call on the specified GSM port. Command returns as soon as the DTFM sequence is played. Maximum length for the DTMF sequence is 32. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |SendDtmf |PortIndex,DTMFSequence |Error Code in case of error. |} '''OUTPUT''' Command status: "%s\n", command_status (OK | ERROR) '''EXAMPLE'''<syntaxhighlight lang="text"> ~# SendDtmf 0 "...") Tag: Visual edit
  • 17:34, 26 March 2025 Administrator talk contribs created page R2D2 - RecordVoice (Created page with "This command records voice to a WAV file (sample rate 8kHz, Mono, 8 bits per sample, block-align 1, A-LAW coding) in the existing call on the specified GSM port. Optional flag PCM16 can be added to record 16 bits per sample. Command returns as soon as the recording starts '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |RecordVoice |PortIndex, DestinationVoiceFile, [PCM16 flag] |Error Code in case of error. |} '''OUTPUT''...") Tag: Visual edit
  • 17:32, 26 March 2025 Administrator talk contribs created page R2D2 - PlayVoice (Created page with "This command injects audio file (sample rate 8kHz, Mono, 8 bits per sample, block-align 1, A-LAW coding) in the existing call on the specified GSM port. Command returns as soon as the voice starts to play. Voice file will be played in loop is the flag is set to 1 '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |PlayVoice |PortIndex,WavFilePath, [FlagForLoopPlay] |Error Code in case of error. |} '''OUTPUT''' GSM port...") Tag: Visual edit
  • 17:24, 26 March 2025 Administrator talk contribs created page R2D2 - PlaceShortCall (Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |AcceptCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# AcceptCall 0<br> CONNECTED<br> ~# AcceptCall 2<br> NO INCOMING CALL </syntaxhighlight> Category:Voice") Tag: 2017 source edit
  • 17:20, 26 March 2025 Administrator talk contribs created page R2D2 - PlaceCallAndWaitConnect (Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |AcceptCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# AcceptCall 0<br> CONNECTED<br> ~# AcceptCall 2<br> NO INCOMING CALL </syntaxhighlight> Category:Voice") Tag: 2017 source edit
  • 17:19, 26 March 2025 Administrator talk contribs created page R2D2 - PlaceCallAndPlay (Created page with "This command places a new call from the specified GSM port and plays a voice WAV file (sample rate 8kHz, mono, 8 bits per sample, block-align 1, A-LAW coding). The PlaceCallAndPlay command return once the call is connected and voice starts to play. Voice Wav file is played continuously until specified call duration or optional timeout expire. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |PlaceCallAndPlay |PortIndex, Destination number, Voi...") Tag: 2017 source edit
  • 17:08, 26 March 2025 Administrator talk contribs created page R2D2 - PlaceCall (Created page with " This command allows to accept an incoming call once presented on the specified port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |PlaceCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' Command status: <br> "%s\n", status (CONNECTED or NO INCOMING CALL) '''EXAMPLE''' <syntaxhighlight lang="text"> ~# PlaceCall 0 0612345678<br> </syntaxhighlight> Category:Voice") Tag: 2017 source edit
  • 17:05, 26 March 2025 Administrator talk contribs created page R2D2 : HangupCall (Created page with "This command hangs up the call on the specified GSM port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |HangupCall |PortIndex |Error Code in case of error. |} '''OUTPUT''' None '''EXAMPLE'''<syntaxhighlight lang="text"> ~# HangupCall 1 </syntaxhighlight>") Tag: Visual edit
  • 17:01, 26 March 2025 Administrator talk contribs created page R2D2 - GetGsmAudioMode (Created page with " This command allows to get the audio mode configuration on a given port. '''COMMAND''' {| class="wikitable" !Command !Line Arguments !Returns |- |GetGsmAudioMode |PortIndex |Error Code in case of error. |} '''OUTPUT''' Audio mode currently configured on the specified port. '''EXAMPLE''' <syntaxhighlight lang="text"> ~ # GetGsmAudioMode 1 USB </syntaxhighlight> Category:Voice") Tag: 2017 source edit
  • 16:23, 26 March 2025 Administrator talk contribs created page R2D2 - AcceptCall (Created page with " This command allows to accept an incoming call once presented on the specified port. == COMMAND == {| class="wikitable" !Command !Input arguments !Returns {{:AcceptCall Synopsis}} |} == OUTPUT == Command status: "%s\n", status (CONNECTED or NO INCOMING CALL) == EXAMPLE == ~# AcceptCall 0 CONNECTED ~# AcceptCall 2 NO INCOMING CALL {{Voice Call}}") Tag: Visual edit
  • 12:40, 14 January 2025 Administrator talk contribs created page File:Image Load Firmware.png
  • 12:40, 14 January 2025 Administrator talk contribs uploaded File:Image Load Firmware.png
  • 13:15, 22 December 2024 Administrator talk contribs uploaded a new version of File:SIMCloud User Manual - v2.1-UR.pdf
  • 00:04, 22 December 2024 Administrator talk contribs created page File:SIMCloud User Manual - v2.1-UR.pdf
  • 00:04, 22 December 2024 Administrator talk contribs uploaded File:SIMCloud User Manual - v2.1-UR.pdf
  • 08:46, 19 August 2024 Administrator talk contribs undeleted page UR - Gateway Telnet Traces (5 revisions)
  • 08:45, 19 August 2024 Administrator talk contribs deleted page UR - Gateway Telnet Traces (content was: "'''Firstly you need to create a Telnet session to the UR Gateway.''' Then enter the following commands:<syntaxhighlight lang="text"> ROS>en ROS#sh detail ROS#^config ROS(config)#deb port all ROS(config)#ex ROS#^ada ROS(ada)#cmd 53 19 x y 0 ROS(ADA)#turnon 84 ROS(ADA)#turnon 53 </syntaxhighlight>'''x''' and '''y''' values above have to be replaced by '''fi...", and the only contributor was "Administrator" (talk))
  • 08:44, 19 August 2024 Administrator talk contribs moved page UR - Debug Gateway to UR - Gateway Telnet Traces
  • 14:38, 13 August 2024 Administrator talk contribs created page UR - Debug Gateway (Created page with "Firstly you need to create a Telnet session to the UR Gateway. Then enter the following commands:") Tag: 2017 source edit
  • 15:21, 17 June 2024 Administrator talk contribs created page File:Gateway stats.png
  • 15:21, 17 June 2024 Administrator talk contribs uploaded File:Gateway stats.png
  • 15:15, 17 June 2024 Administrator talk contribs created page UR - Firmware Update (Created page with "This explains how to upgrade an UR Gateway: * First, you should have received a firmware file from us, but mail or through a support ticket, * You must have access to the gateway that need to be upgrade, and have access to is web management interface, * then, Save the received firmware file in a local directory of your PC. border|left|thumb|671x671px") Tag: Visual edit
  • 15:15, 17 June 2024 Administrator talk contribs created page File:Gateway update.png
  • 15:15, 17 June 2024 Administrator talk contribs uploaded File:Gateway update.png
  • 23:45, 8 June 2024 Administrator talk contribs created page R2D2 - DisconnectData (Created page with "This command establishes data session on the specified port. The command waits until the data session is established or the expiration of a timeout value. The timeout value is the greater from the General timeout value or the timeout value specified in the SetDataParameters command. '''COMMAND:''' {| class="wikitable" !Command !Input Arguments !Returns |- |ConnectData |Port index |In case of Error, returns Error Codes |} '''OUTPUT:''' None. ''...") Tag: 2017 source edit
  • 23:41, 8 June 2024 Administrator talk contribs created page R2D2 - GetDataParameters (Created page with "This command send a specified text as a SMS to a specified destination number. Text should be entered with double quotes, coded as UTF-8. The SMS Center number can be specified as an optional parameter as well as an optionnal Timeout value in seconds. Command exits as soon as the SMS is sent. '''COMMAND:''' {| class="wikitable" !Command !Input Arguments !Returns |- |GetDataParameters |PortIndex |In case of Error, returns Error Codes |} '''OUTPUT:...") Tag: Visual edit
  • 23:32, 8 June 2024 Administrator talk contribs created page R2D2 - SetDataParameters (Created page with "This command configures PDP parameters for data session on the specified GSM port; APN Name, PDP User Name, PDP password, connection timeout (seconds), PDP Header Compression flag, PDP Data Compression flag, IP Address, IP Network Mask, Primary DNS and Secondary DNS. These parameters are used in all further Data sessions. '''COMMAND:''' {| class="wikitable" !Command !Input Arguments !Returns |- |SetDataParameters |Port index APN, UserName Password [Timeout PDP_Header_Co...") Tag: Visual edit
  • 23:02, 8 June 2024 Administrator talk contribs created page R2D2 - GetDataStatus (Created page with "This command returns status of data session on the specified GSM port. If GSM port is not registered to mobile network, command returns status of GSM port. '''COMMAND:''' {| class="wikitable" !Command !Input Arguments !Returns |- |GetDataStatus |Port index |In case of Error, returns Error Codes |} '''OUTPUT:''' None. '''EXAMPLE:'''<syntaxhighlight lang="text"> ~# GetDataStatus 0 CONNECTED Address: 10.157.160.161 Dns1: 212.27.40.240 Dns2: 212.27.4...") Tag: Visual edit
  • 21:44, 8 June 2024 Administrator talk contribs created page R2D2 - ConnectData (Created page with "This command connect the data on the selected port. '''COMMAND:''' {| class="wikitable" !Command !Input Arguments !Returns |- |ConnectData |Port index |In case of Error, returns Error Codes |} '''OUTPUT:''' None. '''EXAMPLE:'''<syntaxhighlight lang="text"> ~# ConnectData 0 DATA UP: IP Address: 10.157.160.161 IP Netmask: 255.255.255.252 IP Default Gateway: 10.157.160.161 IP DNS1: 212.27.40.240 IP DNS2: 212.27.40.241 </syntaxhighlight>") Tag: Visual edit
  • 23:15, 5 June 2024 Administrator talk contribs created page R2D2 - SetSmsCenter (Created page with "This command gets SMS Center number set in the robot and the one set in the SIM for the specified GSM port. {| class="wikitable" !Command !Input Arguments !Returns |- |SetSmsCenter |PortIndex SMSCenter |SMS Center values defined |} '''OUTPUT:''' SMSC number sets in R2D2 device followed by the SMSC number sets in the SIM used by the robot. '''EXAMPLE:''' ~# GetSMSCenter 0 +333600100100 / +333600100100 OR '''OR:''' ~# GetSMSCenter 0 SMSC not set / +33689004000") Tag: Visual edit
  • 22:59, 5 June 2024 Administrator talk contribs created page R2D2 - GetSmsCenter (Created page with "DESCRIPTION[edit | edit source] This command gets SMS Center number set in the robot and in the SIM for the specified GSM port. COMMAND[edit | edit source] Command Input arguments Returns GetSmsCenter Port index SMS Center OUTPUT[edit | edit source] SMSC number sets in R2D2 device and SMSC number sets in the SIM used by the robot. EXAMPLE[edit | edit source] ~# GetSMSCenter 0 +333600100100 / +333600100100 ~# GetSMSCenter 7 +333600100100 / SMSC unknown GetSmsCenter Remote") Tag: 2017 source edit
  • 22:29, 5 June 2024 Administrator talk contribs created page R2D2 - SendSmsText (Created page with "{{API}}") Tag: Visual edit
  • 22:25, 5 June 2024 Administrator talk contribs created page Template:API (Created page with "This places an AT Command to the specified modem port. '''COMMAND:''' {| class="wikitable" !Command !Input Arguments !Returns |- |SendAtCommand |Port index, ATCommand (*) |Issue an AT Command to the specified module. |} (*) Note that the ATCommand must be entered with quotes if the AT Command itself includes double quotes or spaces. See below. '''OUTPUT:''' Response from the modem to the AT command. '''EXAMPLE:'''<syntaxhighlight lang="text"> ~# SendAtCommand 0, "...") Tag: 2017 source edit
  • 12:28, 4 June 2024 Administrator talk contribs created page R2D2 - SendAtCommand (Created page with "This command sets/gets GSM auto registration mode. If it is enabled GSM port will automatically try to register to GSM network, otherwise will wait explicit command (SelectGsmOperator) in order to do this. If mode parameter is not specified command will return current auto registration mode. '''COMMAND:''' {| class="wikitable" !Command !Input Arguments !Returns |- |GsmRegistrationMode |Port index, [Registration mode] |Command status or the actual Registration mode...") Tag: 2017 source edit
  • 18:24, 3 June 2024 Administrator talk contribs created page R2D2 HTTP API (Created page with "The R2D2 API can be accessed through a HTTP Interface. F") Tag: Visual edit
  • 14:52, 31 May 2024 Administrator talk contribs created page SMS Application List (Created page with "You will find here a list of available SMS Applications from the Market either paid or free. '''Note that this list is purely indicative.''' '''The fact that any application is or not listed here, shall not constitute a warranty of any kind'''. {| class="wikitable" !Application Name !Commercial Y/N !Operating System !Link to site |- |Ozeko |Yes |Windows |[https://ozeki.hu/p_1156-ozeki-sms-server.html Ozeki SMS Server] |- | | | | |- | | | | |} To request a change/addit...") Tag: Visual edit
  • 16:07, 30 May 2024 Administrator talk contribs deleted page File:Image2.png (content was: "R2D2 Architecture", and the only contributor was "Administrator" (talk))
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)