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

Need one stable UART and RTT loging example code

Hi,

Overview: In our board BMD340 (containing nRF52840) module present with GSM module and they exchange data using UART(PINRX-6,PINTX-7). Now we trying to use "ble_app_uart" example code from "nRF5_SDK_15.0.0_a53641a".
Objective: Using uart we send some AT command from BMD340 to GSM and connect internet,SMS or HTTP request. Also we need RTT log debugging .
Observation: We try many way to complete our objective but firmware crashes, hang and "Reset: Halt core after reset via DEMCR.VC_CORERESET.". Sometime its run after that its not working. Even "uart_event_handle" data missing. When we send data "app_uart_put();" its hang.
Also when we run RTTLOG and UART not able to debug error is "CPU not able to read register"
Executing Reset script TargetInterface.resetAndStop()

Reset: Halt core after reset via DEMCR.VC_CORERESET.
Reset: Reset device via AIRCR.SYSRESETREQ.
Preparing target for user application
Executing Reset script TargetInterface.resetAndStop()
Reset: Halt core after reset via DEMCR.VC_CORERESET.
Reset: Reset device via AIRCR.SYSRESETREQ.
Could not start CPU core. (ErrorCode: -1)
Support: Need one stable UART and RTT loging example code. Please guide us.
Parents
  • Hi Oliver,

    If I understood correctly you want to send messages from the nRF52840 module (BMD340) to a GPS module via the UART peripheral?

    I recommend you take a look at the UART hardware peripheral example, under the folder \examples\peripheral\uart in the SDK.

    RTT logging can you enable in sdk_config.h by setting NRF_LOG_BACKEND_RTT_ENABLED to 1.

    But are you sure you are able to compile and run the examples in the SDK at all? From the error messages you are getting it seems like you have some HW issue. What do you use to program the BMD340 module? Are you using an external debugger or the debugger on a DK perhaps? And do you program using nrfprog or SES?

    Best regards,

    Marjeris

  • We are using >>Environment: IDE- Segger embedded studio, external Debugger- segger-jlink EDU, Hardware- development board, SDK version -"nRF5_SDK_15.0.0"

    Use of BMD340 is send AT command to GSM and some internal sensor data capturing 

    We able to compile and debugging "sometime" and crash. 

    i try with UART hardware peripheral example but no luck. problem in sending and receiving data handling so let me any help you can do

  • Hi,

    So you are not able to compile and debug any example on the SDK? Can you describe how things are connected? How is the j-link EDU connected to the BMD340 module? And how is the BMD340 being powered? If you could attach a picture of the setup and the schematic files of your PCB it would be great.

    Best regards,

    Marjeris

  • Hi,

    I am able to compile code, buid & run . But its crash when we sending "AT\r" or other command..for example:

    #include "app_uart.h"
    
    #include "app_util_platform.h"
    
    #include "nordic_common.h" 
    
    #include "nrf_gpio.h"
    
    #include "nrf.h"
    
    #include "nrf_delay.h"
    
    //#include "nrf_pwr_mgmt.h"
    
    #include <stdint.h>
    
    #include <string.h>
    
     
    
    #if defined(UART_PRESENT)
    
    #include "nrf_uart.h"
    
    #endif
    
    #if defined(UARTE_PRESENT)
    
    #include "nrf_uarte.h"
    
    #endif
    
     
    
    //#include "nrf_log.h"
    
    //#include "nrf_log_ctrl.h"
    
    //#include "nrf_log_default_backends.h"
    
    //
    
     
    
     
    
    #define DEAD_BEEF 0xDEADBEEF /**< Value used as error code on stack dump, can be used to identify stack location on stack unwind. */
    
     
    
    #define UART_TX_BUF_SIZE 512  /**< UART TX buffer size. */
    
    #define UART_RX_BUF_SIZE 512 /**< UART RX buffer size. */
    
    //modempin define
    
    #define modemVCCEnablePin 23     // Power gating modem and codec
    
    #define modemShifterEnablePin 20 // Uart level shifter
    
    #define eSIMsel 21 // Uart level shifter
    
    #define modemRxPin 6
    
    #define modemTxPin 7
    
    #define modemPwrOnPin 12
    
    #define modemResetPin 22
    
    //#define paShutdownPin   13 // CODECIRQ?!?!? what is this? connected to Codec IRQ pin
    
    #define RESP_OK 1           //RESP_OK for modem return
    
    #define SIM_READY 2         //SIM READY
    
     
    
    uint8_t gsm_data_array[120];
    
    uint8_t gsm_index = 0;
    
    uint8_t icount=0,tx_flag=0;
    
     
    
    void peripheralsPowerOn(bool allPeripherals);
    
    void peripheralsPowerOff();
    
    void GSM_powerON();
    
    void gsm_read();
    
    void wait();
    
    void wait_ms();
    
    void wait_us();
    
    int waitFinalResp();
    
    int gsm_init();
    
    void sendFormated(const char* str);
    
    int modem_internet();
    
     
    
     
    
    
    void uart_event_handle(app_uart_evt_t *p_event) {
    
      uint32_t err_code;
    
      switch (p_event->evt_type) {
    
      case APP_UART_DATA_READY:
    
         err_code=app_uart_get(&gsm_data_array[gsm_index]);
    
         gsm_index++;
    
         if (gsm_data_array[gsm_index-1]== '\r') {
    
         gsm_index=0;
    
         }
    
     
    
        break;
    
     
    
      case APP_UART_COMMUNICATION_ERROR:
    
        APP_ERROR_HANDLER(p_event->data.error_communication);
    
        break;
    
     
    
      case APP_UART_FIFO_ERROR:
    
        APP_ERROR_HANDLER(p_event->data.error_code);
    
        break;
    
     
    
      default:
    
        break;
    
      }
    
    }
    
     
    
    static void uart_init(void) {
    
      uint32_t err_code;
    
      app_uart_comm_params_t const comm_params =
    
          {
    
              .rx_pin_no = 6,
    
              .tx_pin_no = 7,
    
              .rts_pin_no = UART_PIN_DISCONNECTED,
    
              .cts_pin_no = UART_PIN_DISCONNECTED,
    
              .flow_control = APP_UART_FLOW_CONTROL_DISABLED,
    
              .use_parity = false,
    
              .baud_rate = NRF_UART_BAUDRATE_115200
    
          };
    
      APP_UART_FIFO_INIT(&comm_params,
    
          UART_RX_BUF_SIZE,
    
          UART_TX_BUF_SIZE,
    
          uart_event_handle,
    
          APP_IRQ_PRIORITY_LOWEST,
    
          err_code); 
    
      //NRF_LOG_INFO("error code %d", err_code);
    
      APP_ERROR_CHECK(err_code);
    
    }
    
    
    static void log_init(void) {
    
      ret_code_t err_code = NRF_LOG_INIT(NULL);
    
      APP_ERROR_CHECK(err_code); 
    
      NRF_LOG_DEFAULT_BACKENDS_INIT();
    
    }
    
     static void power_management_init(void) {
    
      ret_code_t err_code;
    
      err_code = nrf_pwr_mgmt_init();
    
      APP_ERROR_CHECK(err_code);
    
    }
    
     
    
    static void idle_state_handle(void) {
    
      UNUSED_RETURN_VALUE(NRF_LOG_PROCESS());
    
      nrf_pwr_mgmt_run();
    
    }
    
     
    
    //delay for modem
    
    void wait_ms(uint32_t time_ms){
    
     nrf_delay_ms(time_ms);
    
    }
    
     
    
    void wait_us(uint32_t time_us){
    
      nrf_delay_us(time_us);
    
    }
    
     
    
    void wait(uint32_t time_s){
    
      nrf_delay_ms(time_s*1000);
    
    }
    
     void Modem_reset() {
    
       nrf_delay_ms(20);
    
      nrf_gpio_cfg_output(modemResetPin);
    
      nrf_gpio_pin_clear(modemResetPin);
    
      nrf_delay_ms(20);
    
      nrf_gpio_cfg_input(modemResetPin, NRF_GPIO_PIN_NOPULL);
    
      nrf_delay_ms(20);
    
    }
    
    void GSM_powerON(){
    
    //power on
    
        nrf_gpio_cfg_output(modemPwrOnPin);
    
        nrf_gpio_pin_clear(modemPwrOnPin);
    
        nrf_delay_us(65);
    
        nrf_gpio_cfg_input(modemPwrOnPin, NRF_GPIO_PIN_NOPULL);
    
        nrf_delay_ms(10);
    
    }
    
    void peripheralsPowerOn(bool allPeripherals) {
    
      if (allPeripherals) {
    
        nrf_gpio_cfg_output(eSIMsel); 
    
        nrf_gpio_pin_set(eSIMsel);              //seim two selected
    
        nrf_delay_ms(10);
    
       
    
        nrf_gpio_cfg_output(modemVCCEnablePin); // MODEM + CODEC
    
        nrf_gpio_pin_set(modemVCCEnablePin);    // 2.7ms turn-on rise time
    
        nrf_delay_ms(10);
    
     
    
        nrf_gpio_cfg_output(modemShifterEnablePin); // MODEM level shifter
    
        nrf_gpio_pin_clear(modemShifterEnablePin);
    
        nrf_delay_us(100);
    
        GSM_powerON();
    
      }
    
    }
    
     
    
    void peripheralsPowerOff(void) {
    
      nrf_gpio_cfg_output(modemShifterEnablePin); // MODEM level shifter
    
      nrf_gpio_pin_set(modemShifterEnablePin);
    
      nrf_gpio_cfg_output(modemVCCEnablePin); // MODEM + CODEC
    
      nrf_gpio_pin_clear(modemVCCEnablePin);
    
    }
    
    
    
    void sendFormated(const char* str) {
    
         app_uart_put('\r');
    
         wait_ms(20);
    
         uint32_t len = strlen((uint8_t *)str);
    
         for (uint32_t i = 0; i < len; i++) { 
    
              app_uart_put(str[i]) ;    
    
               wait_ms(20);
    
          }
    
        wait_ms(300);
    
    }
    
     
    
    
    void SMS_SEND()
    
    {
    
          sendFormated("AT+CMGF=1\r\n");
    
          sendFormated("AT+CMGS=\"09004061579\"\r\n");
    
          wait(30);
    
          sendFormated("hello");
    
          app_uart_flush();
    
          while(app_uart_put((uint8_t)0x1A));
    
          wait_ms(7000);             
    
    }
    
    int modem_internet(){
    
            
    
          sendFormated("AT+CFUN=1\r"); 
    
          sendFormated("AT+CSQ\r");
    
          sendFormated("AT+COPS\?\r");
    
          sendFormated("AT+CGREG\?\r");
    
          // SMS_SEND();
    
          sendFormated("AT+CMEE=1\r");
    
          //sendFormated("AT+CGACT=1\r");
    
          sendFormated("AT+CGDCONT=1,\"IP\",\"internet.gma.iot\"\r");
    
          sendFormated("AT+CGACT=1,1\r");
    
          sendFormated("AT+CGPADDR=1\r");
    
    }
    
    int modem_init(){
    
       sendFormated("AT\r");
    
       sendFormated("ATE0\r");
    
       sendFormated("AT&K0\r\n");
    
       sendFormated("AT+UGPIOC=23,255\r"); // GPIO2
    
       sendFormated("AT+UGPIOC=24,255\r"); // GPIO3
    
       sendFormated("AT+IPR=115200\r");
    
       sendFormated("AT+CCID\r");
    
       sendFormated("AT+CLIP=1\r");
    
       sendFormated("AT+CRC=1\r");  
    
     }
    
    int main(void) {
    
          
    
          peripheralsPowerOn(true);
    
          power_management_init(); 
    
           uart_init();
    
           log_init();
    
           NRF_LOG_INFO("init done");
    
          UNUSED_RETURN_VALUE(NRF_LOG_PROCESS());
    
          sendFormated("AT\r");
    
       sendFormated("ATE0\r");
    
       sendFormated("AT&K0\r");   
    
            modem_init();
    
            modem_internet();
    
            for (;;) {
    
             idle_state_handle();
    
            }
    
    }

    in this uart code i am using "APP_UART_FIFO_INIT" so my question is there any other way we can write code which using HAL ?

    I attached circuit diagram of BMD340 for reference 

     

  • Hi,

    Sorry for the late reply. When do you get the Could not start CPU core. (ErrorCode: -1) error message? It doesn't make sense that you are getting it when you sent something over UART.

    Can you explain a bit more about what is happening right before you get this error?

    Can you also try to run a debug session in SES and see if the code is getting stuck anywhere? Try setting a breakpoint in uart_event_handle() and see if you get any callbacks.

    If you are using the UART module in the applicatio you should not use the UART module for logging, so can you also make sure you don't have the UART backend for logging enable in sdk_config.h?

    Best regards,

    Marjeris

Reply
  • Hi,

    Sorry for the late reply. When do you get the Could not start CPU core. (ErrorCode: -1) error message? It doesn't make sense that you are getting it when you sent something over UART.

    Can you explain a bit more about what is happening right before you get this error?

    Can you also try to run a debug session in SES and see if the code is getting stuck anywhere? Try setting a breakpoint in uart_event_handle() and see if you get any callbacks.

    If you are using the UART module in the applicatio you should not use the UART module for logging, so can you also make sure you don't have the UART backend for logging enable in sdk_config.h?

    Best regards,

    Marjeris

Children
No Data
Related