Hi everyone, I would like to know if it is possible to do AT Commands through the Octave application example through Edge Actions.
Thank you
Hi everyone, I would like to know if it is possible to do AT Commands through the Octave application example through Edge Actions.
Thank you
Hi henrikflog,
You could try to configure Universal Serial Parser (USP) at the link below:
Universal Serial Parser (USP) Guide (octave.dev)
Thanks,
How could I do at command via uart serial? I used putty and connected to the modem when I do it physically
Hi henrikflog,
Please follow these step:
Install driver for your Octave device here:
https://downloads.sierrawireless.com/mangOH/drivers/Sierra_Wireless_WP_75xx_76xx_77xx_8548_Windows_Drivers-Build_4836.exe
Connect your PC to the FX30/FX30S via the USB port.
On your PC, open Computer Management, find Sierra Wireless WWAN Modem as the picture below to get COM port and port speed for the next step:
Open your putty and configure the correct com port and speed.
Thank you for your reply, indeed I know how to do it with PuTTy, I was just asking how can I do it via Octave (remotely)
Hello,
Unfortunately, we do not support AT commands through the existing Octave applications. You could write your own application to forward commands from the Datahub to the AT parser, if you are comfortable doing so. This would give you AT access from the cloud or from edge actions. Such an application would need to use the Datahub io.api and the Legato le_atClient.api.
The AT port is also available when logged into the device locally, via ssh. To access it, use:
microcom /dev/ttyAT. Echo is not enabled by default so it helps to issue “ATE” as the first command
Thanks,
Ian
Hi, thank you for your reply.
So if I understand correctly:
at this point I am not sure if it’s correct:
Is this these steps right?
Thank you
Hi,
Yes, that’s right. You want to create a Legato app that uses the le_atClient API - and the /dev/ttyAT device.
As for sending the command from the Datahub:
Thanks,
Ian