Murata Type 1SC-NTN LBAD0XX1SC - Evaluation Kit

Built on 3GPP Release-17 NTN standards, the Murata Type 1SC-NTN module brings satellite IoT capabilities to your devices—without requiring hardware changes. In partnership with Skylo, Murata enables reliable NTN communication for remote and hard-to-reach areas.

This guide provides step-by-step instructions to set up the Murata Type 1SC-NTN LBAD0XX1SC Evaluation Kit using a Velocity IoT SIM, including how to configure AT commands for Skylo Satellite IoT connectivity over Non-Terrestrial Networks (NTN).

What you will need

  1. Murata Kit: LBAD0XX1SC-DM-EVK-B - Available on Digi-Key
  2. Velocity IoT SIM Card with NTN IMSI - Reach out to sales@velocityiot.io
LBAD0XX1SC-DM-EVK-B

How to Connect

Before attempting to connect, ensure your SIM is active in the CMP and that a data plan has been assigned. For any issues related to your account or SIM activation, please contact support@velocityiot.com

  • Connect the USB cable to your PC and the EVK board via the AT CMD port (Mini USB).
  • Insert your Velocity IoT SIM into the SIM slot on the EVK.
  • Connect the Antena

The EVK is now powered and ready for serial communication.

Please also reference Murata User Guides, view here

Set Up Serial Connection

  • On Windows, install the USB-to-Serial driver:

CP210x VCP Driver – Silicon Labs

  • Open a terminal tool

Windows: Tera Term or PuTTY

Mac/Linux: screen, minicom, or Miniterm

  • Configure the Terminal:

Baud rate: 11520

Data bits: 8

Parity: None

Stop bits: 1

Flow control: None

  • Press Enter, then Type AT. If the connection is successful, you will see OK

AT Command Sequence for Murata Type 1SC-NTN (Firmware: RK_03_02_01_00_40041_001)

Used to configure the module for Skylo NTN connectivity using a Velocity IoT SIM.

Initial Module Checks

ATI                                                                              Check product type, HW, and FW version

ATI + CIMI

AT%CCID                                                                   Request the ICCID        

AT%GETCFG="SIM_INIT_SELECT_POLICY"             Check the SIM initialization selection policy

AT%SETCFG="SIM_INIT_SELECT_POLICY","0"        Enable the External SIM card

ATZ                                                                                              Reboot the Module

Set NTN Parameters

AT%SETACFG="radiom.config.multi_rat_enable","true"

AT%SETACFG="radiom.config.preferred_rat_list","none"

AT%SETACFG="radiom.config.auto_preference_mode","none"

AT%GETACFG="ntn.conf.gnss_in_use"

AT%SETACFG="modem_apps.Mode.AutoConnectMode","true"

AT%NTNCFG="POS","MANUAL","1"

Configure NB-IoT NTN

This eample is for testing in the USA?

AT%RATIMGSEL=2

AT%RATACT="NBNTN",1

AT%SETCFG="BAND","23"                                               Lock the modem to a US region/band

ATZ                                                                                            Reboot the Module

AT+CFUN=0                                                                           Disable radio

Set GPS location

See insturctions on getting location from Google maps below

AT%NTNEV="POSREQ",1

AT%NTNCFG="POS","STAT","34.093716689480495","-80.865882142328","50"

Set the APN to flolive.net

AT+CGDCONT=1,"IP","FLOLIVE.NET"

Enable SIB31 reception notification

AT%NOTIFYEV="SIB31",1

Enable Timing Advance calculation notification

AT%NTNEV="TA",1

Enable RRC State notification

AT%NOTIFYEV="RRCSTATE",1

Sent Registration Status

AT+CEREG=2

Enable Radio

AT+CFUN=1

Example Response

%NOTIFYEV: "SIB31",....

%NTNEVU: "TA","RACH"...

%NTNEVU: "TA","TAC"....

%NOTIFYEV: "RRCSTATE",...

+CEREG: 5,"07D4",....

Example Ping

AT%PINGCMD=0,"8.8.8.8",1,56,60                                One attempt with 56 bytes and 60 sec timeout

%PINGCMD:1,"8.8.8.8",19078,56                                   Round trip time of 19078 ms

Instructions Getting Location from Google Maps

  • Click on Satellite NTN Network on the left side of the page if it does not load correctly.
  • Define position - Using Google maps - right click on the pin to see coordinates)

34.093716689480495, -80.865882142328

AT%NTNEV="POSREQ",1

AT%NTNCFG="POS","STAT","34.093716689480495","-80.865882142328","50"

Test The Connection by Sending a UDP Payload

Once your Murata Type 1SC module is registered on the Skylo NTN network and has completed GPS/location setup, you can test end-to-end connectivity by sending a UDP packet using a socket-based AT command sequence.

The module uses a set of AT%SOCKETCMD and AT%SOCKETDATA commands to allocate, activate, send, and clean up a UDP session.


Allocate a UDP Socket

Start by allocating a UDP socket to the IP address and port of your destination server. Replace  <destination_ip> and <port> with actual values.

AT%SOCKETCMD="ALLOCATE",1,"UDP","OPEN","<destination_ip>",<port>

For example, to send to Google's public DNS server (just for test routing purposes), you could use:

AT%SOCKETCMD="ALLOCATE",1,"UDP","OPEN","8.8.8.8",1234

Replace 8.8.8.8 and 1234 with your server’s IP address and port.


Activate the Socket

After the socket is allocated, you need to activate it before sending any data:

AT%SOCKETCMD="ACTIVATE",1

Send a UDP Payload

Now send a test payload using the AT%SOCKETDATA command. The payload must be in hexadecimal format, and you must specify the length of the data in bytes.

AT%SOCKETDATA="SEND",1,,"<hex_payload>"

Example

AT%SOCKETDATA="SEND",1,13,"48656C6C6F2C20776F726C6421"

Verify Socket Status

AT%SOCKETCMD="INFO",1

Close UDP Socket

After your test is complete end your UDP session by closing the socket

AT%SOCKETCMD="DELETE",1