This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Need help on NRF9160 Development of Hardware & firmware

hello,

we are developing a product, in which it needs BLE, LTE,GPS. we are planning to choose Nrf9160 for LTE & GPS. we need following support during development

1. what is the best suitable antenna for NRF9160 for both LTE & GPS, we don't  have hardcore RF expertise, so we need help on this , we have some flex antennas 

  a.https://www.molex.com/molex/products/part-detail/antennas/2072350100

 b.https://www.molex.com/molex/products/part-detail/antennas/2065600100

 can above antennas be used by just connecting via UFL connector with out any matching components etc , or any smaller chip antenna available

2.what is the smallest size PCB we can have when NRF9160 with including antennas . remaining BLE & power circuits we can manage

3. we are not interested in 2 firmware for 9160 separately and ble separately. so we are planning to choose BLE processor as main MCU , and NRF9160 will be used with out any custom firmware, so AT command based. so any suggestions on this

4.  our goal will be to extract the GPS from 9160 to BLE main mcu, and then send it via MQTT. does NRF9160 supports MQTT, any code examples via AT. with out implementing MQTT protocol on BLE main mCU, does NRF9160 supports any quick command. as of now, only publishing, in future might need subscribe also.

5. Does NRF9160 modules selling in online have embedded sim enabled, if so how to activate it with carrier.

6. lets say, if LTE is connected to carrier, then with out disconnecting from carrier, can we get GPS information, if so how?  any examples.

we are already running late to finalize the module.need help from Nordic officials.Thank you

with regards

Dr.N.Chandra sekhar, Phd

Parents
  • HELLO heidi.

    thanks for reply, i do consider MR.carls inputs. thanks for both. i am starting with antenova gps active antenna for GPS, and molex felxstrip for LTE,

    this is the first time i am handling nrf9160,and we are already running late, so i need some support privately and guide me in every aspect, so we can take this to production in less than 3 months.as we already got screwed bcz of corona.

    with respect to BLE , we are planning to use other vendor module with AT commands , will it be easier to do all BLE stuff from the nrf9160 via uart, or do you recommend to use nordic module only. ?

    we are planning to use Esim. but we dont know how to proceed. dont know where to start, Does netwrok operators provide esim? or do we need to use any balnk esim modules and then load with imei or how,this works can you guide me on this?

    i had tried installing NCS and followed step by step getting started guide, but still unable to get a clear idea about , how to create a empty project, or any empty or template project to start with. like in BLE empty

    Thank you

  • Hi!

    The reason I suggest using nRF9160 as the main MCU and handle BLE over UART is that there are a lot of sample projects in NCS for exactly this setup. 

    With regard to eSim, I suggest asking your network provider about how this is provided. I will try to find someone tomorrow who has knowledge about how eSIM's work, as today is a Norwegian holiday. Since the Nordic modules (DK and Thingy) don't support this I don't have much experience with it. 

    For a blank NCS project, you need the following file structure

    -src
        -main.c
    -prj.conf
    -CMakeLists.txt

    where prj.conf is for all your configurations, and CMakeLists.txt looks something like this

    cmake_minimum_required(VERSION 3.8.2)
    
    include($ENV{ZEPHYR_BASE}/../nrf/cmake/boilerplate.cmake)
    include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
    project(NONE)
    
    # NORDIC SDK APP START
    target_sources(app PRIVATE src/main.c)
    # NORDIC SDK APP END

    If you go to ncs/nrf/samples/nrf9160 you'll find a lot of sample applications. We usually recommend newcomers start by editing an application that resembles theirs, instead of creating a blank project. This git-repo, from a colleague, also has a few basic samples, such as UART and SPI to show how to set up these things.

    As for your request to guide you in every aspect, the way we handle technical support on DevZone is generally to make a new ticket if your follow-up questions are not related to the original ticket. This is first and foremost so that other users can easily find tickets similar to their own and to make the website searchable. And secondly, to make sure your questions end up with the Nordic engineer who has experience with what you're asking about.

    Lastly, so you're aware, we do offer hardware review of your design and antenna tuning for free, when you have gotten that far in your development process. :) 

    Best regards,

    Heidi

  • Hi sir,

    'How are you? Any update about esim.i am waiting for information about. how to integrate it. i mean, many manufacturers are offering Esim IC. simply can i use it, or do i need to get it from network operators. if i use a blank esim chip some company like infineon or ST, then how to load network credentials? awating for this information.

    based on your suggestion to use Nordic chip for BLE, i am planning to use mbn52832 sip module from murrate.. which connections i need to make from this BLE chip to NRF9160.

    with regards

    Dr.N.Chandra sekhar,phd

  • Hi

    Regarding eSIM: This ticket has a lot of info regarding this. Also this SIM and eSIM page regarding eSIM support on the nRF9160 DK. 

    Note: be aware that there is a lot of misunderstanding and misuse of terms. This article explains this. Could you clarify that you mean eSIM and not iSIM?

    Regarding BLE chip: It doesn't matter that much what you use. If you choose UART you can get away with only using two pins. With SPI, you would need 3-4, but it's also faster so more suitable if you're sending a lot of data.

    Best regards,

    Heidi

  • Hi Heidi,

    Thanks for your reply. but still i am confused about  using esim and whether to get esim from network operator or buy from mouser.

    with respect to using active antenna, from the whitepaper https://infocenter.nordicsemi.com/index.jsp?topic=%2Fug_nrf91_dk%2FUG%2Fnrf91_DK%2Fsim_esim.html

    it mentions Coex0 can be used to switch GPS LNA or GPS load switch for active antenna. but Datasheet say MAGPIO0 can be used to switch GPS. need clarity about which pin to be used. Thank you

Reply Children
Related