This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/CC2541: UART recieve does not work properly

Part Number: CC2541

Tool/software: TI C/C++ Compiler

Hello,

Have been struggling with the UART receive. I have to recieve data from another microcontroller at evey one second. When I do this my BLE crashes out after I read from the getparameter (after 5-10 times).

Another issue is that my BLE range is getting affected I cannot go 50 mtrs from the place where the BLE sits.

How can UART recieve be properly implemented. kindly help.

I have coded using the CC2541_peripheral_codes which is provided by TI.

I am using the polling method. Should I Try with the DMA method? Does DMA works perfectly with cc2541? Will the DMA transfer not hang my CC2541???

Thanks 

Sidharth

  • Hey Sidharth,

    It's difficult to say what might be the problem without more information, but polling data is never recommended. I suggest you take a look at the serialApp-demo: 

    Regards,

    Klas

  • Can you provide a link for an example.

    Among DMA and interrupt which is recommended??

  • Hi

    the code above is not functional properly.

    Sir I am trying to implement the UART in ISR mode but it does not seem to be working

    Have used the code from the CC2541_43_44_45_Peripherals_Software_Examples under which uart_isr.c.

    //in init function
    PERCFG = (PERCFG & ~PERCFG_U0CFG) | PERCFG_U0CFG_ALT1;  
    
        // Give priority to USART 0 over Timer 1 for port 0 pins.
        P2DIR &= P2DIR_PRIP0_USART0;
        
        // Set pins 2, 3 and 5 as peripheral I/O and pin 4 as GPIO output.
        P0SEL |= BIT5 | BIT4 | BIT3 | BIT2;
        
        // Initialise bitrate = 9600 baud rate
        U0BAUD = UART_BAUD_M;
        U0GCR = (U0GCR & ~U0GCR_BAUD_E) | UART_BAUD_E;
        
        // Initialise UART protocol (start/stop bit, data bits, parity, etc.):
        // USART mode = UART (U0CSR.MODE = 1)
        U0CSR |= U0CSR_MODE;
        
        // Start bit level = low => Idle level = high  (U0UCR.START = 0).
        U0UCR &= ~U0UCR_START;
    
        // Stop bit level = high (U0UCR.STOP = 1).
        U0UCR |= U0UCR_STOP;
    
        // Number of stop bits = 1 (U0UCR.SPB = 0).
        U0UCR &= ~U0UCR_SPB;
        
        // Parity = disabled (U0UCR.PARITY = 0).
        U0UCR &= ~U0UCR_PARITY;
        
        // 9-bit data enable = 8 bits transfer (U0UCR.BIT9 = 0).
        U0UCR &= ~U0UCR_BIT9;
        
        // Level of bit 9 = 0 (U0UCR.D9 = 0), used when U0UCR.BIT9 = 1.
        // Level of bit 9 = 1 (U0UCR.D9 = 1), used when U0UCR.BIT9 = 1.
        // Parity = Even (U0UCR.D9 = 0), used when U0UCR.PARITY = 1.
        // Parity = Odd (U0UCR.D9 = 1), used when U0UCR.PARITY = 1.
        U0UCR &= ~U0UCR_D9;
        
        // Flow control = disabled (U0UCR.FLOW = 0).
        U0UCR &= ~U0UCR_FLOW;
        
        // Bit order = LSB first (U0GCR.ORDER = 0).
        U0GCR &= ~U0GCR_ORDER;
    
    //in periodic task
    static void performPeriodicTaskUltrasonic(void)
    {
    //interrupt method  
    uart0StartRxForIsr();  
    DevInfo_SetParameter(DEVINFO_DIG_IN_DATA_ID, sizeof(uartRxBuffer)-1, (char*)uartRxBuffer);
    }
    
    //in uart0StartRxForIsr function
    void uart0StartRxForIsr(void)
    {
        // Ready for new packet.
        uartPktReceived = 0;
        
        // Initialize the UART RX buffer index.
        uartRxIndex = 0;
    
        // Clear any pending UART RX Interrupt Flag (TCON.URXxIF = 0, UxCSR.RX_BYTE = 0).
        URX0IF = 0;
    
        // Enable UART RX (UxCSR.RE = 1).
        U0CSR |= U0CSR_RE;
    
        // Enable global Interrupt (IEN0.EA = 1) and UART RX Interrupt (IEN0.URXxIE = 1).
        URX0IE = 1;
        EA = 1; 
    }
    
    //and here is the interrupt vector
    #pragma vector = URX0_VECTOR
    __interrupt void UART0_RX_ISR(void)
    {
        // Clear UART0 RX Interrupt Flag (TCON.URX0IF = 0).
        URX0IF = 0;
    
        // Read UART0 RX buffer. 
        uartRxBuffer[uartRxIndex++] = U0DBUF;
    
        // If all UART data received, stop this UART RX session.
        if (uartRxIndex >= SIZE_OF_UART_RX_BUFFER)
        {
            uartRxIndex = 0;
            uartPktReceived = 1;
        } 
    }
    
    
    
    
    
    

    Using Pin 0.2 and pin 0.3 as my UART 

    Uart data  is coming every 1 sec and periodic event is also fired every 1 second

    PLease help

    Regards.

    Siddharth

  • Since you are using BLE Stack, why don't you use API in hal_uart.c instead of writing your own UART code?

  • Hi Yikai,

    This is for the UART
  • Sorry it's my typo. I have fixed it.
  • Yikai,

    Can you please point me to an example on how to use the hal_uart

    I have been seeing the guide
    Can U point me to a place where I can find the code
  • Hi YiKai,

    This is the code I am using

    //in INIT function
       HalUARTInit();
         halUARTCfg_t uartConfig;
         uartConfig.configured           = TRUE;
         uartConfig.baudRate             = HAL_UART_BR_9600;
         uartConfig.flowControl          = FALSE;
         uartConfig.flowControlThreshold = 48;
         uartConfig.rx.maxBufSize        = 128;
         uartConfig.tx.maxBufSize        = 128;
         uartConfig.idleTimeout          = 6;  
         uartConfig.intEnable            = TRUE;             
         uartConfig.callBackFunc         = uart0RxCb;
       HalUARTOpen (HAL_UART_PORT_0, &uartConfig);
    
    //Callback Function
    void uart0RxCb( uint8 port, uint8 event )
    {
     while (Hal_UART_RxBufLen(port))
     {
       HalUARTRead (port, read_buf, 5);
     }
    }
    
    // in the 500 ms periodic function
        DevInfo_SetParameter(DEVINFO_DIG_IN_DATA_ID, sizeof(read_buf), (char*)read_buf);
    
    //and here are the MACROS
    INT_HEAP_LEN=3000
    HALNODEBUG
    OSAL_CBTIMER_NUM_TASKS=1
    HAL_AES_DMA=TRUE
    POWER_SAVING
    xPLUS_BROADCASTER
    HAL_LCD=FALSE
    HAL_LED=TRUE
    HAL_KEY=TRUE
    CC2540_MINIDK
    ACC_BMA250
    DC_DC_P0_7
    chip=2541
    HAL_UART=TRUE
    HAL_UART_DMA=1

    Please help

    Anything else I need to do

    I am not able to establish a conection at all

    Thanks 

    Siddharth

    :

  • What do you mean you are not able to establish a conection at all? BLE connection or UART connection?
  • BLE

    I am getting this warning also

    Warning[w52]: More than one definition for the byte at address 0x6b in common segment INTVEC. It is defined in module "hal_uart" as well as in module "hal_key"

  • If you comment out everything in uart0RxCb to test again, does it connect?

    void uart0RxCb( uint8 port, uint8 event )
    {
     //while (Hal_UART_RxBufLen(port))
     //{
       //HalUARTRead (port, read_buf, 5);
     //}
    }
    
  • /**************************************************************************************************
      Filename:       keyfobdemo.c
      Revised:        $Date: 2013-08-15 15:28:40 -0700 (Thu, 15 Aug 2013) $
      Revision:       $Revision: 34986 $
    
      Description:    Key Fob Demo Application.
    
      Copyright 2009 - 2013 Texas Instruments Incorporated. All rights reserved.
    
      IMPORTANT: Your use of this Software is limited to those specific rights
      granted under the terms of a software license agreement between the user
      who downloaded the software, his/her employer (which must be your employer)
      and Texas Instruments Incorporated (the "License").  You may not use this
      Software unless you agree to abide by the terms of the License. The License
      limits your use, and you acknowledge, that the Software may not be modified,
      copied or distributed unless embedded on a Texas Instruments microcontroller
      or used solely and exclusively in conjunction with a Texas Instruments radio
      frequency transceiver, which is integrated into your product.  Other than for
      the foregoing purpose, you may not use, reproduce, copy, prepare derivative
      works of, modify, distribute, perform, display or sell this Software and/or
      its documentation for any purpose.
    
      YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
      PROVIDED �AS IS� WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
      INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
      NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
      TEXAS INSTRUMENTS OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT,
      NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
      LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
      INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
      OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
      OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
      (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
    
      Should you have any questions regarding your right to use this Software,
      contact Texas Instruments Incorporated at www.TI.com.
    **************************************************************************************************/
    
    /*********************************************************************
     * INCLUDES
     */
    
    #include "bcomdef.h"
    #include "OSAL.h"
    #include "OSAL_PwrMgr.h"
    
    #include "OnBoard.h"
    #include "hal_adc.h"
    #include "hal_led.h"
    #include "hal_key.h"
    
    #include "buzzer.h"
    
    #if defined ( ACC_BMA250 )
    #  include "bma250.h"
    #elif defined ( ACC_CMA3000 )
    #  include "cma3000d.h"
    #endif
    
    #include "gatt.h"
    
    #include "hci.h"
    
    #include "gapgattserver.h"
    #include "gattservapp.h"
    #include "gatt_profile_uuid.h"
    
    #if defined ( PLUS_BROADCASTER )
      #include "peripheralBroadcaster.h"
    #else
      #include "peripheral.h"
    #endif
    
    #include "gapbondmgr.h"
    
    #include "devinfoservice.h"
    #include "proxreporter.h"
    #include "battservice.h"
    #include "accelerometer.h"
    #include "simplekeys.h"
    
    #include "keyfobdemo.h"
    
    #include "ioCC2541.h"
    #include "ioCC254x_bitdef.h"
    
    #include "hal_types.h"
    #include "hal_wait.h"
    #include "hal_uart.h"
    #include "dma.h"
    
    /*********************************************************************
     * MACROS
     */
    
    /*********************************************************************
     * CONSTANTS
     */
    
    // Delay between power-up and starting advertising (in ms)
    #define STARTDELAY                            500
    
    // Number of beeps before buzzer stops by itself
    #define BUZZER_MAX_BEEPS                      10
    
    // Buzzer beep tone frequency for "High Alert" (in Hz)
    #define BUZZER_ALERT_HIGH_FREQ                4096
    
    // Buzzer beep tone frequency for "Low Alert" (in Hz)
    #define BUZZER_ALERT_LOW_FREQ                 250
    
    // How often to check battery voltage (in ms)
    #define BATTERY_CHECK_PERIOD                  10000
    
    // How often (in ms) to read the accelerometer
    #define ACCEL_READ_PERIOD                     50
    
    // Minimum change in accelerometer before sending a notification
    #define ACCEL_CHANGE_THRESHOLD                5
    
    //GAP Peripheral Role desired connection parameters
    
    // Use limited discoverable mode to advertise for 30.72s, and then stop, or
    // use general discoverable mode to advertise indefinitely
    //#define DEFAULT_DISCOVERABLE_MODE             GAP_ADTYPE_FLAGS_LIMITED
    #define DEFAULT_DISCOVERABLE_MODE             GAP_ADTYPE_FLAGS_GENERAL
    
    // Minimum connection interval (units of 1.25ms, 80=100ms) if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_MIN_CONN_INTERVAL     80
    
    // Maximum connection interval (units of 1.25ms, 800=1000ms) if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_MAX_CONN_INTERVAL     800
    
    // Slave latency to use if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_SLAVE_LATENCY         0
    
    // Supervision timeout value (units of 10ms, 1000=10s) if automatic parameter update request is enabled
    #define DEFAULT_DESIRED_CONN_TIMEOUT          1000
    
    // Whether to enable automatic parameter update request when a connection is formed
    #define DEFAULT_ENABLE_UPDATE_REQUEST         TRUE
    
    // Connection Pause Peripheral time value (in seconds)
    #define DEFAULT_CONN_PAUSE_PERIPHERAL         5
    
    // keyfobProximityState values
    #define KEYFOB_PROXSTATE_INITIALIZED          0   // Advertising after initialization or due to terminated link
    #define KEYFOB_PROXSTATE_CONNECTED_IN_RANGE   1   // Connected and "within range" of the master, as defined by
                                                      // proximity profile
    #define KEYFOB_PROXSTATE_PATH_LOSS            2   // Connected and "out of range" of the master, as defined by
                                                      // proximity profile
    #define KEYFOB_PROXSTATE_LINK_LOSS            3   // Disconnected as a result of a supervision timeout
    
    // buzzer_state values
    #define BUZZER_OFF                            0
    #define BUZZER_ON                             1
    
    // keyfobAlertState values
    #define ALERT_STATE_OFF                       0
    #define ALERT_STATE_LOW                       1
    #define ALERT_STATE_HIGH                      2
    
    // Company Identifier: Texas Instruments Inc. (13)
    #define TI_COMPANY_ID                         0x000D
    
    #define INVALID_CONNHANDLE                    0xFFFF
    
    #if defined ( PLUS_BROADCASTER )
      #define ADV_IN_CONN_WAIT                    500 // delay 500 ms
    #endif
    
    #define KFD_PERIODIC_EVT_PERIOD               500
    
    //for 30 seconds on/off advertisement
    //#define KFD_ADV_STOP_EVT_PERIOD               30000
    
    //for Ultrasonic sensor
    #define KFD_ULTRASONIC_PERIODIC_EVT_PERIOD      1000
    
    //UART definations
    //9600 baud rate
    #define UART_BAUD_M                             59
    #define UART_BAUD_E                             8
    
    // Define size of allocated UART RX/TX buffer (just an example).
    #define SIZE_OF_UART_TX_BUFFER                  6
    #define SIZE_OF_UART_RX_BUFFER                  6
    
    // UART test characters.
    #define UART_TEST_DATA                          "Texas Instruments LPRF!"
    
    
    /*********************************************************************
     * TYPEDEFS
     */
    
    /*********************************************************************
     * GLOBAL VARIABLES
     */
    
    /*********************************************************************
     * EXTERNAL VARIABLES
     */
    
    /*********************************************************************
     * EXTERNAL FUNCTIONS
     */
    
    /*********************************************************************
     * LOCAL VARIABLES
     */
    static uint8 keyfobapp_TaskID;   // Task ID for internal task/event processing
    
    static gaprole_States_t gapProfileState = GAPROLE_INIT;
    
    // Proximity State Variables
    static uint8 keyfobProxLLAlertLevel = PP_ALERT_LEVEL_NO;     // Link Loss Alert
    static uint8 keyfobProxIMAlertLevel = PP_ALERT_LEVEL_NO;     // Link Loss Alert
    static int8  keyfobProxTxPwrLevel = 0;  // Tx Power Level (0dBm default)
    
    // keyfobProximityState is the current state of the device
    static uint8 keyfobProximityState;
    
    static uint8 keyfobAlertState;
    
    // GAP - SCAN RSP data (max size = 31 bytes)
    static uint8 deviceName[] =
    {
      // complete name
      0x0D,   // length of first data structure (11 bytes excluding length byte)
      0x09,   // AD Type = Complete local name
      'A',
      'x',
      'e', 
      'l', 
      't', 
      'a', 
      ' ', 
      'T', 
      'e',
      's',
      't',
      ' ',//light
    
     
    //  0x4b,   // 'K'
    //  0x65,   // 'e'
    //  0x79,   // 'y'
    //  0x66,   // 'f'
    //  0x6f,   // 'o'
    //  0x62,   // 'b'
    //  0x64,   // 'd'
    //  0x65,   // 'e'
    //  0x6d,   // 'm'
    //  0x6f,   // 'o'
    };
    
    // GAP - Advertisement data (max size = 31 bytes, though this is
    // best kept short to conserve power while advertisting)
    static uint8 advertData[] =
    {
      0x02,   // length of first data structure (2 bytes excluding length byte)
      GAP_ADTYPE_FLAGS,   // AD Type = Flags
      DEFAULT_DISCOVERABLE_MODE | GAP_ADTYPE_FLAGS_BREDR_NOT_SUPPORTED,
    
      // service UUID, to notify central devices what services are included
      // in this peripheral
      0x07,   // length of second data structure (7 bytes excluding length byte)
      GAP_ADTYPE_16BIT_MORE,   // list of 16-bit UUID's available, but not complete list
      LO_UINT16( LINK_LOSS_SERV_UUID ),        // Link Loss Service (Proximity Profile)
      HI_UINT16( LINK_LOSS_SERV_UUID ),
      LO_UINT16( IMMEDIATE_ALERT_SERV_UUID ),  // Immediate Alert Service (Proximity / Find Me Profile)
      HI_UINT16( IMMEDIATE_ALERT_SERV_UUID ),
      LO_UINT16( TX_PWR_LEVEL_SERV_UUID ),     // Tx Power Level Service (Proximity Profile)
      HI_UINT16( TX_PWR_LEVEL_SERV_UUID )
    };
    
    // GAP GATT Attributes
    static uint8 attDeviceName[GAP_DEVICE_NAME_LEN] = "Axelta Light";
      
    // Buzzer state
    static uint8 buzzer_state = BUZZER_OFF;
    static uint8 buzzer_beep_count = 0;
    
    // Accelerometer Profile Parameters
    static uint8 accelEnabler = FALSE;
    
    //static uint16 counter = 0;
    
    //for 30 seconds on/off advertisement
    //static uint8 advert_enable = TRUE, flg = 0;
    
    //Uart transmit and recieve buffers
    //static uint8 __xdata uartRxBuffer[SIZE_OF_UART_RX_BUFFER];
    //static uint8 __xdata uartTxBuffer[SIZE_OF_UART_TX_BUFFER];// = UART_TEST_DATA;
    //static uint16 __xdata uartTxIndex;
    //static uint16 __xdata uartRxIndex;
    
    // Variable for UART packet monitoring.
    //static uint8 __xdata uartPktReceived = 1;
    
    // DMA descriptor for UART RX/TX.
    //static DMA_DESC __xdata uartDmaRxTxCh[2];
    
     static uint8 *read_buf;
    
    //Ultrasonic varaibles
    bool toggle_light=FALSE;
    
    /*********************************************************************
     * LOCAL FUNCTIONS
     */
    static void keyfobapp_ProcessOSALMsg( osal_event_hdr_t *pMsg );
    static void keyfobapp_PerformAlert( void );
    static void keyfobapp_StopAlert( void );
    static void keyfobapp_HandleKeys( uint8 shift, uint8 keys );
    static void peripheralStateNotificationCB( gaprole_States_t newState );
    static void proximityAttrCB( uint8 attrParamID );
    static void accelEnablerChangeCB( void );
    static void accelRead( void );
    
    /*********************************************************************
     * PROFILE CALLBACKS
     */
    
    // GAP Role Callbacks
    static gapRolesCBs_t keyFob_PeripheralCBs =
    {
      peripheralStateNotificationCB,  // Profile State Change Callbacks
      NULL                // When a valid RSSI is read from controller
    };
    
    
    // GAP Bond Manager Callbacks
    static gapBondCBs_t keyFob_BondMgrCBs =
    {
      NULL,                     // Passcode callback (not used by application)
      NULL                      // Pairing / Bonding state Callback (not used by application)
    };
    
    // Proximity Peripheral Profile Callbacks
    static proxReporterCBs_t keyFob_ProximityCBs =
    {
      proximityAttrCB,              // Whenever the Link Loss Alert attribute changes
    };
    
    // Accelerometer Profile Callbacks
    static accelCBs_t keyFob_AccelCBs =
    {
      accelEnablerChangeCB,          // Called when Enabler attribute changes
    };
    
    
    //Uart Callbacks
    //void uart0RxCb( uint8 port, uint8 event )
    //{
      /*
      uint8  ch;
      while (Hal_UART_RxBufLen(port))
      {
        // Read one byte from UART to ch
        HalUARTRead (port, &ch, 1);
      }
      */
    //}
    
    /*********************************************************************
     * PUBLIC FUNCTIONS
     */
    
    //Uart Callbacks 
    void uart0RxCb( uint8 port, uint8 event )
    {/*
     while (Hal_UART_RxBufLen(port))
     {
      HalUARTRead (port, read_buf, 5);
     }*/
    }
    
    
    /*********************************************************************
     * @fn      KeyFobApp_Init
     *
     * @brief   Initialization function for the Key Fob App Task.
     *          This is called during initialization and should contain
     *          any application specific initialization (ie. hardware
     *          initialization/setup, table initialization, power up
     *          notificaiton ... ).
     *
     * @param   task_id - the ID assigned by OSAL.  This ID should be
     *                    used to send messages and set timers.
     *
     * @return  none
     */
    void KeyFobApp_Init( uint8 task_id )
    {
      keyfobapp_TaskID = task_id;
        
      // Setup the GAP
      VOID GAP_SetParamValue( TGAP_CONN_PAUSE_PERIPHERAL, DEFAULT_CONN_PAUSE_PERIPHERAL );
      
      // Setup the GAP Peripheral Role Profile
      {
        // For the CC2540DK-MINI keyfob, device doesn't start advertising until button is pressed
        uint8 initial_advertising_enable = TRUE;//FALSE
        
        // By setting this to zero, the device will go into the waiting state after
        // being discoverable for 30.72 second, and will not being advertising again
        // until the enabler is set back to TRUE
        uint16 gapRole_AdvertOffTime = 0;
      
        uint8 enable_update_request = DEFAULT_ENABLE_UPDATE_REQUEST;
        uint16 desired_min_interval = DEFAULT_DESIRED_MIN_CONN_INTERVAL;
        uint16 desired_max_interval = DEFAULT_DESIRED_MAX_CONN_INTERVAL;
        uint16 desired_slave_latency = DEFAULT_DESIRED_SLAVE_LATENCY;
        uint16 desired_conn_timeout = DEFAULT_DESIRED_CONN_TIMEOUT;
       
        // Set the GAP Role Parameters
        GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &initial_advertising_enable );
        GAPRole_SetParameter( GAPROLE_ADVERT_OFF_TIME, sizeof( uint16 ), &gapRole_AdvertOffTime );
      
        GAPRole_SetParameter( GAPROLE_SCAN_RSP_DATA, sizeof ( deviceName ), deviceName );
        GAPRole_SetParameter( GAPROLE_ADVERT_DATA, sizeof( advertData ), advertData );
      
        GAPRole_SetParameter( GAPROLE_PARAM_UPDATE_ENABLE, sizeof( uint8 ), &enable_update_request );
        GAPRole_SetParameter( GAPROLE_MIN_CONN_INTERVAL, sizeof( uint16 ), &desired_min_interval );
        GAPRole_SetParameter( GAPROLE_MAX_CONN_INTERVAL, sizeof( uint16 ), &desired_max_interval );
        GAPRole_SetParameter( GAPROLE_SLAVE_LATENCY, sizeof( uint16 ), &desired_slave_latency );
        GAPRole_SetParameter( GAPROLE_TIMEOUT_MULTIPLIER, sizeof( uint16 ), &desired_conn_timeout );
      }
      
      // Set the GAP Attributes
      GGS_SetParameter( GGS_DEVICE_NAME_ATT, GAP_DEVICE_NAME_LEN, attDeviceName );
    /*
      // Setup the GAP Bond Manager
      {
        uint32 passKey = 123456;
        uint8 pairMode = GAPBOND_PAIRING_MODE_INITIATE;
        uint8 mitm = TRUE;
        uint8 ioCap = GAPBOND_IO_CAP_DISPLAY_ONLY;
        uint8 bonding = TRUE;
        
        GAPBondMgr_SetParameter( GAPBOND_DEFAULT_PASSCODE, sizeof ( uint32 ), &passKey );
        GAPBondMgr_SetParameter( GAPBOND_PAIRING_MODE, sizeof ( uint8 ), &pairMode );
        GAPBondMgr_SetParameter( GAPBOND_MITM_PROTECTION, sizeof ( uint8 ), &mitm );
        GAPBondMgr_SetParameter( GAPBOND_IO_CAPABILITIES, sizeof ( uint8 ), &ioCap );
        GAPBondMgr_SetParameter( GAPBOND_BONDING_ENABLED, sizeof ( uint8 ), &bonding );
      }
      */
    
      // Initialize GATT attributes
      GGS_AddService( GATT_ALL_SERVICES );         // GAP
      GATTServApp_AddService( GATT_ALL_SERVICES ); // GATT attributes
      DevInfo_AddService();   // Device Information Service
    //  ProxReporter_AddService( GATT_ALL_SERVICES );  // Proximity Reporter Profile
    //  Batt_AddService( );     // Battery Service
     // Accel_AddService( GATT_ALL_SERVICES );      // Accelerometer Profile
    //  SK_AddService( GATT_ALL_SERVICES );         // Simple Keys Profile
    
      keyfobProximityState = KEYFOB_PROXSTATE_INITIALIZED;
    
      // Initialize Tx Power Level characteristic in Proximity Reporter
      {
        int8 initialTxPowerLevel = 0;
        
        ProxReporter_SetParameter( PP_TX_POWER_LEVEL, sizeof ( int8 ), &initialTxPowerLevel );
      }
    
      keyfobAlertState = ALERT_STATE_OFF;
    
      // make sure buzzer is off
      buzzerStop();
    
      // makes sure LEDs are off
      HalLedSet( (HAL_LED_1 | HAL_LED_2), HAL_LED_MODE_OFF );
    
      // For keyfob board set GPIO pins into a power-optimized state
      // Note that there is still some leakage current from the buzzer,
      // accelerometer, LEDs, and buttons on the PCB.
    /*
      P0SEL = 0; // Configure Port 0 as GPIO
      P1SEL = 0x40; // Configure Port 1 as GPIO, except P1.6 for peripheral function for buzzer
      P2SEL = 0; // Configure Port 2 as GPIO
    
      P0DIR = 0xFC; // Port 0 pins P0.0 and P0.1 as input (buttons),
                    // all others (P0.2-P0.7) as output
      P1DIR = 0xFF; // All port 1 pins (P1.0-P1.7) as output
      P2DIR = 0x1F; // All port 1 pins (P2.0-P2.4) as output
    
      P0 = 0x03; // All pins on port 0 to low except for P0.0 and P0.1 (buttons)
      P1 = 0;   // All pins on port 1 to low
      P2 = 0;   // All pins on port 2 to low
    */
      
    //Setting up the ADC Channel Reference volage and setting the buzze
    //Added P0_3 as output
      {
        P0SEL = 0x00; 
        P0DIR = 0x30;             //0x30 here
        P0INP = 0xCF;             //CF here
        APCFG = 0x01;                               //SETTING p0.0 AS adc INPUT
        HalAdcSetReference(HAL_ADC_REF_AVDD);       //setting ADC reference to AIN7
      }
    
    //Setting Up the Digital IO Pin for Door Sensor
      {
        P1SEL = 0X00;                       //Pin 1.0
        P1DIR = 0XFE;                       //pin 1.0 as input
        P2INP &= ~((1<<7) | (1<<6));
      }
      
    //UART Initialization
       {
       HalUARTInit();
         halUARTCfg_t uartConfig;
         uartConfig.configured           = TRUE;
         uartConfig.baudRate             = HAL_UART_BR_9600;
         uartConfig.flowControl          = FALSE;
         uartConfig.flowControlThreshold = 48;
         uartConfig.rx.maxBufSize        = 128;
         uartConfig.tx.maxBufSize        = 128;
         uartConfig.idleTimeout          = 6;  
         uartConfig.intEnable            = TRUE;             
         uartConfig.callBackFunc         = uart0RxCb;
       HalUARTOpen (HAL_UART_PORT_0, &uartConfig);
    
     }
      
    //Watchdog initialization
      {
        WDCTL &= ~((1<<1) | (1<<2));     //Setting Watchdog Timeout to 1 Sec
        WDCTL = (WDCTL &~(1<<3)) | (1<<4) ;      //Starts Watchdog Timer
      }  
      
    
      // initialize the ADC for battery reads
      HalAdcInit();
    
      // Register for all key events - This app will handle all key events
      RegisterForKeys( keyfobapp_TaskID );
    
    #if defined ( DC_DC_P0_7 )
    
      // Enable stack to toggle bypass control on TPS62730 (DC/DC converter)
      HCI_EXT_MapPmIoPortCmd( HCI_EXT_PM_IO_PORT_P0, HCI_EXT_PM_IO_PORT_PIN7 );
    
    #endif // defined ( DC_DC_P0_7 )
      
      // Setup a delayed profile startup
      osal_start_timerEx( keyfobapp_TaskID, KFD_START_DEVICE_EVT, STARTDELAY );
      
      P0_1 = 1;
    }
    /*
    void uart0Send(uint8* uartTxBuf, uint16 uartTxBufLength)
    {
        uint16 uartTxIndex;
    
        // Clear any pending TX interrupt request (set U0CSR.TX_BYTE = 0).
        U0CSR &= ~U0CSR_TX_BYTE;
    
        // Loop: send each UART0 sample on the UART0 TX line.
        for (uartTxIndex = 0; uartTxIndex < uartTxBufLength; uartTxIndex++)
        {
            U0DBUF = uartTxBuf[uartTxIndex];
            while(! (U0CSR & U0CSR_TX_BYTE) );
            U0CSR &= ~U0CSR_TX_BYTE;
        }
            U0DBUF = 0x0A;
            while(! (U0CSR & U0CSR_TX_BYTE) );
            U0CSR &= ~U0CSR_TX_BYTE;
            U0DBUF = 0x0D;
            while(! (U0CSR & U0CSR_TX_BYTE) );
            U0CSR &= ~U0CSR_TX_BYTE;
    }
    
    void uart0Receive(uint8* uartRxBuf, uint16 uartRxBufLength)
    {
        uint16 uartRxIndex;
    
        // Enable UART0 RX (U0CSR.RE = 1).
        U0CSR |= U0CSR_RE;
    
        // Clear any pending RX interrupt request (set U0CSR.RX_BYTE = 0).
        U0CSR &= ~U0CSR_RX_BYTE;
    
        // Loop: receive each UART0 sample from the UART0 RX line.
        for (uartRxIndex = 0; uartRxIndex < uartRxBufLength; uartRxIndex++)
        {
            // Wait until data received (U0CSR.RX_BYTE = 1).
            while( !(U0CSR & U0CSR_RX_BYTE) );
    
            // Read UART0 RX buffer.
            uartRxBuf[uartRxIndex] = U0DBUF;
        }
    }
    */
    //create periodic event of 500 milliseconds
    static void performPeriodicTask(void)
    {
        uint16 ADC_Data;
    //    uint8 ADC_DataL, ADC_DataH;
        uint8 initial_advertising_enable = TRUE;
    //    uint8 initial_advertising_enable_false = FALSE;
    //  float millivolts;
    //    int Celcius;
        char Door_Sensor, DIgital_input;
        
        //Watchdog Reset
        WDCTL = (WDCTL &~(1<<7)) | (WDCTL &~(1<<5)) | (1<<8) | (1<<6); 
        WDCTL = (WDCTL &~(1<<8)) | (WDCTL &~(1<<6)) | (1<<7) | (1<<5);
    
        //ADC value is read here
    //    ADC_Data = HalAdcRead(HAL_ADC_CHN_AIN0,HAL_ADC_RESOLUTION_10);
       
    //    ADC_DataH = (ADC_Data >> 8)&(0xFF);
    //    advertData[25] = ADC_DataH;
     //   ADC_DataL = ADC_Data&(0xFF);
        //temperature sensor caliberation
    //    millivolts= (ADC_Data/128.0) * 3300;
    //    Celcius = (millivolts/10);
    //    DevInfo_SetParameter(DEVINFO_ANLG_DATA_ID, DEVINFO_ANLG_DATA_LEN, &ADC_Data);
        Door_Sensor = (~(P1)) & 0x01;
        DevInfo_SetParameter(DEVINFO_DIG_DATA_ID, DEVINFO_DIG_DATA_LEN, &Door_Sensor);
        DevInfo_GetParameter(DEVINFO_DIG_IN_DATA_ID, &DIgital_input);
        if(DIgital_input == 0x31)
          P0_4 = 1;
        if(DIgital_input == 0x30)   
          P0_4 = 0;
    
        //advertData[26] = Celcius;
        //advertData[26] = ADC_DataL;
        //Door Sensor
        //advertData[28] = ~(P1);
        //setting up the advertising data
        GAPRole_SetParameter( GAPROLE_ADVERT_DATA, sizeof( advertData ), advertData );
        GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &initial_advertising_enable);
        
    }
    
    static void performPeriodicTaskUltrasonic(void)
    {
    //      uint16 Distance;
          //for ultrasonic sensor
    //    P1_3 = 0;
    //    halMcuWaitMs(5); 
    //    P1_3 = 1;
         
        //recieve Uart Data
    //    uart0Receive(uartRxBuffer, SIZE_OF_UART_RX_BUFFER);
        
    //    Distance = (uartRxBuffer[1]*256) + uartRxBuffer[2];
    //    DevInfo_SetParameter(DEVINFO_ANLG_DATA_ID, DEVINFO_ANLG_DATA_LEN, &Distance);
        
        //Sending uart Data
    //    uart0Send(uartRxBuffer, SIZE_OF_UART_TX_BUFFER);            //here it was uartTxBuffer
      
    //
          //Watchdog Reset
        WDCTL = (WDCTL &~(1<<7)) | (WDCTL &~(1<<5)) | (1<<8) | (1<<6); 
        WDCTL = (WDCTL &~(1<<8)) | (WDCTL &~(1<<6)) | (1<<7) | (1<<5);
        DevInfo_SetParameter(DEVINFO_DIG_IN_DATA_ID, sizeof(read_buf), (char*)read_buf);
    }
    
    /*********************************************************************
     * @fn      KeyFobApp_ProcessEvent
     *
     * @brief   Key Fob Application Task event processor.  This function
     *          is called to process all events for the task.  Events
     *          include timers, messages and any other user defined events.
     *
     * @param   task_id  - The OSAL assigned task ID.
     * @param   events - events to process.  This is a bit map and can
     *                   contain more than one event.
     *
     * @return  none
     */
    uint16 KeyFobApp_ProcessEvent( uint8 task_id, uint16 events )
    {
      if ( events & SYS_EVENT_MSG )
      {
        uint8 *pMsg;
    
        if ( (pMsg = osal_msg_receive( keyfobapp_TaskID )) != NULL )
        {
          keyfobapp_ProcessOSALMsg( (osal_event_hdr_t *)pMsg );
    
          // Release the OSAL message
          VOID osal_msg_deallocate( pMsg );
        }
    
        // return unprocessed events
        return (events ^ SYS_EVENT_MSG);
      }
    
      if ( events & KFD_START_DEVICE_EVT )
      {
        // Start the Device
        VOID GAPRole_StartDevice( &keyFob_PeripheralCBs );
    
        // Start Bond Manager
        VOID GAPBondMgr_Register( &keyFob_BondMgrCBs );
    
        // Start the Proximity Profile
        VOID ProxReporter_RegisterAppCBs( &keyFob_ProximityCBs );
    
        // Set timer for first battery read event
        osal_start_timerEx( keyfobapp_TaskID, KFD_BATTERY_CHECK_EVT, BATTERY_CHECK_PERIOD );
        
    
        // Start the Accelerometer Profile
        VOID Accel_RegisterAppCBs( &keyFob_AccelCBs );
    
        //Set the proximity attribute values to default
        ProxReporter_SetParameter( PP_LINK_LOSS_ALERT_LEVEL,  sizeof ( uint8 ), &keyfobProxLLAlertLevel );
        ProxReporter_SetParameter( PP_IM_ALERT_LEVEL,  sizeof ( uint8 ), &keyfobProxIMAlertLevel );
        ProxReporter_SetParameter( PP_TX_POWER_LEVEL,  sizeof ( int8 ), &keyfobProxTxPwrLevel );
    
        // Set LED1 on to give feedback that the power is on, and a timer to turn off
        HalLedSet( HAL_LED_1, HAL_LED_MODE_ON );
        osal_pwrmgr_device( PWRMGR_ALWAYS_ON ); // To keep the LED on continuously.
        osal_start_timerEx( keyfobapp_TaskID, KFD_POWERON_LED_TIMEOUT_EVT, 1000 );
        
        //setup periodic event for the first time
        osal_start_timerEx(keyfobapp_TaskID, KFD_PERIODIC_EVT, KFD_PERIODIC_EVT_PERIOD);
        
        //Setting advertising timer
        //osal_start_timerEx(keyfobapp_TaskID, KFD_ADV_STOP_EVT, KFD_ADV_STOP_EVT_PERIOD);
        
        //Setting up Ultrasonic timer
        osal_start_timerEx( keyfobapp_TaskID, KFD_ULTRASONIC_PERIODIC_EVT, KFD_ULTRASONIC_PERIODIC_EVT_PERIOD );
        
        return ( events ^ KFD_START_DEVICE_EVT );
      }
    
      if ( events & KFD_POWERON_LED_TIMEOUT_EVT )
      {
        osal_pwrmgr_device( PWRMGR_BATTERY ); // Revert to battery mode after LED off
        HalLedSet( HAL_LED_1, HAL_LED_MODE_OFF ); 
        return ( events ^ KFD_POWERON_LED_TIMEOUT_EVT );
      }
      
      if ( events & KFD_ACCEL_READ_EVT )
      {
        bStatus_t status = Accel_GetParameter( ACCEL_ENABLER, &accelEnabler );
    
        if (status == SUCCESS)
        {
          if ( accelEnabler )
          {
            // Restart timer
            if ( ACCEL_READ_PERIOD )
            {
              osal_start_timerEx( keyfobapp_TaskID, KFD_ACCEL_READ_EVT, ACCEL_READ_PERIOD );
            }
    
            // Read accelerometer data
            accelRead();
          }
          else
          {
            // Stop the acceleromter
            osal_stop_timerEx( keyfobapp_TaskID, KFD_ACCEL_READ_EVT);
          }
        }
        else
        {
            //??
        }
        return (events ^ KFD_ACCEL_READ_EVT);
      }
    
      if ( events & KFD_BATTERY_CHECK_EVT )
      {
        // Restart timer
        if ( BATTERY_CHECK_PERIOD )
        {
          osal_start_timerEx( keyfobapp_TaskID, KFD_BATTERY_CHECK_EVT, BATTERY_CHECK_PERIOD );
        }
    
        // perform battery level check
        Batt_MeasLevel( );
    
        return (events ^ KFD_BATTERY_CHECK_EVT);
      }
    
      if ( events & KFD_TOGGLE_BUZZER_EVT )
      {
        // if this event was triggered while buzzer is on, turn it off, increment beep_count,
        // check whether max has been reached, and if not set the OSAL timer for next event to
        // turn buzzer back on.
        if ( buzzer_state == BUZZER_ON )
        {
          buzzerStop();
          buzzer_state = BUZZER_OFF;
          buzzer_beep_count++;
          #if defined ( POWER_SAVING )
            osal_pwrmgr_device( PWRMGR_BATTERY );
          #endif
    
          // check to see if buzzer has beeped maximum number of times
          // if it has, then don't turn it back on
          if ( ( buzzer_beep_count < BUZZER_MAX_BEEPS ) &&
               ( ( keyfobProximityState == KEYFOB_PROXSTATE_LINK_LOSS ) ||
                 ( keyfobProximityState == KEYFOB_PROXSTATE_PATH_LOSS )    ) )
          {
            osal_start_timerEx( keyfobapp_TaskID, KFD_TOGGLE_BUZZER_EVT, 800 );
          }
        }
        else if ( keyfobAlertState != ALERT_STATE_OFF )
        {
          // if this event was triggered while the buzzer is off then turn it on if appropriate
          keyfobapp_PerformAlert();
        }
    
        return (events ^ KFD_TOGGLE_BUZZER_EVT);
      }
    
      if (events & KFD_PERIODIC_EVT)
      {
        if ( KFD_PERIODIC_EVT_PERIOD)
        {
          osal_start_timerEx(keyfobapp_TaskID, KFD_PERIODIC_EVT, KFD_PERIODIC_EVT_PERIOD);
        }
        performPeriodicTask();
        return (events ^ KFD_PERIODIC_EVT);
      }
    
      if (events & KFD_ULTRASONIC_PERIODIC_EVT)
      {
        osal_start_timerEx( keyfobapp_TaskID, KFD_ULTRASONIC_PERIODIC_EVT, 5000 );
        performPeriodicTaskUltrasonic();
        
        return (events ^ KFD_ULTRASONIC_PERIODIC_EVT);
      }
    
    //for 30 seconds on/off advertisement
      /*
      if ( events & KFD_ADV_STOP_EVT )
      {
          osal_start_timerEx(keyfobapp_TaskID, KFD_ADV_STOP_EVT, KFD_ADV_STOP_EVT_PERIOD);
          if(flg == 0)
          {
            flg = 1;
            advert_enable = TRUE;
            GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &advert_enable );
          }
          else
          {
            flg = 0;
            advert_enable = FALSE;
            GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &advert_enable );
          }
      }
      */
    
    #if defined ( PLUS_BROADCASTER )
      if ( events & KFD_ADV_IN_CONNECTION_EVT )
      {
        uint8 turnOnAdv = TRUE;
        // Turn on advertising while in a connection
        GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &turnOnAdv );
      }
    #endif
    
      // Discard unknown events
      return 0;
    }
    
    /*********************************************************************
     * @fn      keyfobapp_ProcessOSALMsg
     *
     * @brief   Process an incoming task message.
     *
     * @param   pMsg - message to process
     *
     * @return  none
     */
    
    static void keyfobapp_ProcessOSALMsg( osal_event_hdr_t *pMsg )
    {
      switch ( pMsg->event )
      {
        case KEY_CHANGE:
          keyfobapp_HandleKeys( ((keyChange_t *)pMsg)->state, ((keyChange_t *)pMsg)->keys );
          break;
      }
    }
    
    
    /*********************************************************************
     * @fn      keyfobapp_HandleKeys
     *
     * @brief   Handles all key events for this device.
     *
     * @param   shift - true if in shift/alt.
     * @param   keys - bit field for key events. Valid entries:
     *                 HAL_KEY_SW_2
     *                 HAL_KEY_SW_1
     *
     * @return  none
     */
    
    static void keyfobapp_HandleKeys( uint8 shift, uint8 keys )
    {
      uint8 SK_Keys = 0;
    
      (void)shift;  // Intentionally unreferenced parameter
    
      if ( keys & HAL_KEY_SW_1 )
      {
        SK_Keys |= SK_KEY_LEFT;
    
        // if is active, pressing the left key should toggle
        // stop the alert
        if( keyfobAlertState != ALERT_STATE_OFF )
        {
          keyfobapp_StopAlert();
        }
    
        // if device is in a connection, toggle the Tx power level between 0 and
        // -6 dBm
        if( gapProfileState == GAPROLE_CONNECTED )
        {
          int8 currentTxPowerLevel;
          int8 newTxPowerLevel;
    
          ProxReporter_GetParameter( PP_TX_POWER_LEVEL, &currentTxPowerLevel );
    
          switch ( currentTxPowerLevel )
          {
          case 0:
            newTxPowerLevel = -6;
            // change power to -6 dBm
            HCI_EXT_SetTxPowerCmd( HCI_EXT_TX_POWER_MINUS_6_DBM );
            // Update Tx powerl level in Proximity Reporter (and send notification)
            // if enabled)
            ProxReporter_SetParameter( PP_TX_POWER_LEVEL, sizeof ( int8 ), &newTxPowerLevel );
            break;
    
          case (-6):
            newTxPowerLevel = 0;
            // change power to 0 dBm
            HCI_EXT_SetTxPowerCmd( HCI_EXT_TX_POWER_0_DBM );
            // Update Tx powerl level in Proximity Reporter (and send notification)
            // if enabled)
            ProxReporter_SetParameter( PP_TX_POWER_LEVEL, sizeof ( int8 ), &newTxPowerLevel );
            break;
    
          default:
            // do nothing
            break;
          }
        }
    
      }
    
     // if ( keys & HAL_KEY_SW_2 )
      {
    
        SK_Keys |= SK_KEY_RIGHT;
    
        // if device is not in a connection, pressing the right key should toggle
        // advertising on and off
      //  if( gapProfileState != GAPROLE_CONNECTED )
        {
          uint8 current_adv_enabled_status;
          uint8 new_adv_enabled_status;
    
          //Find the current GAP advertisement status
          GAPRole_GetParameter( GAPROLE_ADVERT_ENABLED, &current_adv_enabled_status );
    
          if( current_adv_enabled_status == FALSE )
          {
            new_adv_enabled_status = TRUE;
          }
    //      else
    //      {
    //        new_adv_enabled_status = FALSE;
    //      }
    
          //change the GAP advertisement status to opposite of current status
          GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &new_adv_enabled_status );
        }
    
      }
    
      SK_SetParameter( SK_KEY_ATTR, sizeof ( uint8 ), &SK_Keys );
    }
    
    /*********************************************************************
     * @fn      keyfobapp_PerformAlert
     *
     * @brief   Performs an alert
     *
     * @param   none
     *
     * @return  none
     */
    
    static void keyfobapp_PerformAlert( void )
    {
    
      if ( keyfobProximityState == KEYFOB_PROXSTATE_LINK_LOSS )
      {
        switch( keyfobProxLLAlertLevel )
        {
        case PP_ALERT_LEVEL_LOW:
    
          #if defined ( POWER_SAVING )
            osal_pwrmgr_device( PWRMGR_ALWAYS_ON );
          #endif
    
          keyfobAlertState = ALERT_STATE_LOW;
    
          buzzerStart( BUZZER_ALERT_LOW_FREQ );
          buzzer_state = BUZZER_ON;
          // only run buzzer for 200ms
               
          //osal_start_timerEx( keyfobapp_TaskID, KFD_TOGGLE_BUZZER_EVT, 200 );
    
          HalLedSet( (HAL_LED_1 | HAL_LED_2), HAL_LED_MODE_OFF );
          break;
    
        case PP_ALERT_LEVEL_HIGH:
    
          #if defined ( POWER_SAVING )
            osal_pwrmgr_device( PWRMGR_ALWAYS_ON );
          #endif
    
          keyfobAlertState = ALERT_STATE_HIGH;
    
          buzzerStart( BUZZER_ALERT_HIGH_FREQ );
          buzzer_state = BUZZER_ON;
          // only run buzzer for 200ms
          P0_4 = 1;
          //osal_start_timerEx( keyfobapp_TaskID, KFD_TOGGLE_BUZZER_EVT, 200 );
    
          HalLedSet( HAL_LED_1, HAL_LED_MODE_ON );
          HalLedSet( HAL_LED_2, HAL_LED_MODE_FLASH );
          break;
    
        case PP_ALERT_LEVEL_NO:
            // Fall through
        default:
          keyfobapp_StopAlert();
           P0_4 = 0;
          break;
        }
      }
      else if ( keyfobProximityState == KEYFOB_PROXSTATE_PATH_LOSS )
      {
        switch( keyfobProxIMAlertLevel )
        {
        case PP_ALERT_LEVEL_LOW:
    
          #if defined ( POWER_SAVING )
            osal_pwrmgr_device( PWRMGR_ALWAYS_ON );
          #endif
    
          keyfobAlertState = ALERT_STATE_LOW;
    
          buzzerStart( BUZZER_ALERT_LOW_FREQ );
          buzzer_state = BUZZER_ON;
          // only run buzzer for 200ms
          osal_start_timerEx( keyfobapp_TaskID, KFD_TOGGLE_BUZZER_EVT, 200 );
    
          HalLedSet( (HAL_LED_1 | HAL_LED_2), HAL_LED_MODE_OFF );
          break;
    
    
        case PP_ALERT_LEVEL_HIGH:
    
          #if defined ( POWER_SAVING )
            osal_pwrmgr_device( PWRMGR_ALWAYS_ON );
          #endif
    
          keyfobAlertState = ALERT_STATE_HIGH;
    
          buzzerStart( BUZZER_ALERT_HIGH_FREQ );
          buzzer_state = BUZZER_ON;
          // only run buzzer for 200ms
           P0_5 = 1;
         // osal_start_timerEx( keyfobapp_TaskID, KFD_TOGGLE_BUZZER_EVT, 200 );
    
          HalLedSet( HAL_LED_1, HAL_LED_MODE_ON );
          HalLedSet( HAL_LED_2, HAL_LED_MODE_FLASH );
          break;
    
          case PP_ALERT_LEVEL_NO:
            // Fall through
          default:
            keyfobapp_StopAlert();
            break;
          }
      }
    
    }
    
    /*********************************************************************
     * @fn      keyfobapp_StopAlert
     *
     * @brief   Stops an alert
     *
     * @param   none
     *
     * @return  none
     */
    
    void keyfobapp_StopAlert( void )
    {
    
      keyfobAlertState = ALERT_STATE_OFF;
    
      buzzerStop();
      buzzer_state = BUZZER_OFF;
      HalLedSet( (HAL_LED_1 | HAL_LED_2), HAL_LED_MODE_OFF );
    
    
      #if defined ( POWER_SAVING )
        osal_pwrmgr_device( PWRMGR_BATTERY );
      #endif
    }
    
    /*********************************************************************
     * @fn      peripheralStateNotificationCB
     *
     * @brief   Notification from the profile of a state change.
     *
     * @param   newState - new state
     *
     * @return  none
     */
    
    static void peripheralStateNotificationCB( gaprole_States_t newState )
    {
      uint16 connHandle = INVALID_CONNHANDLE;
      uint8 valFalse = FALSE;
    
      if ( gapProfileState != newState )
      {
        switch( newState )
        {
        case GAPROLE_STARTED:
          {
            // Set the system ID from the bd addr
            uint8 systemId[DEVINFO_SYSTEM_ID_LEN];
            GAPRole_GetParameter(GAPROLE_BD_ADDR, systemId);
    
            // shift three bytes up
            systemId[7] = systemId[5];
            systemId[6] = systemId[4];
            systemId[5] = systemId[3];
    
            // set middle bytes to zero
            systemId[4] = 0;
            systemId[3] = 0;
    
            DevInfo_SetParameter(DEVINFO_SYSTEM_ID, DEVINFO_SYSTEM_ID_LEN, systemId);
          }
          break;
    
        //if the state changed to connected, initially assume that keyfob is in range
        case GAPROLE_ADVERTISING:
          {
            // Visual feedback that we are advertising.
            HalLedSet( HAL_LED_2, HAL_LED_MODE_ON );
          }
          break;
          
        //if the state changed to connected, initially assume that keyfob is in range      
        case GAPROLE_CONNECTED:
          {
            // set the proximity state to either path loss alert or in range depending
            // on the value of keyfobProxIMAlertLevel (which was set by proximity monitor)
            if( keyfobProxIMAlertLevel != PP_ALERT_LEVEL_NO )
            {
              keyfobProximityState = KEYFOB_PROXSTATE_PATH_LOSS;
              // perform alert
              keyfobapp_PerformAlert();
              buzzer_beep_count = 0;
            }
            else // if keyfobProxIMAlertLevel == PP_ALERT_LEVEL_NO
            {
              keyfobProximityState = KEYFOB_PROXSTATE_CONNECTED_IN_RANGE;
              keyfobapp_StopAlert();
            }
    
            GAPRole_GetParameter( GAPROLE_CONNHANDLE, &connHandle );
    
            #if defined ( PLUS_BROADCASTER )
              osal_start_timerEx( keyfobapp_TaskID, KFD_ADV_IN_CONNECTION_EVT, ADV_IN_CONN_WAIT );
            #endif
              
            // Turn off LED that shows we're advertising
            HalLedSet( HAL_LED_2, HAL_LED_MODE_OFF );
          }
          break;
    
    //    case GAPROLE_WAITING:
    //      {
    //        // then the link was terminated intentionally by the slave or master,
    //        // or advertising timed out
    //        keyfobProximityState = KEYFOB_PROXSTATE_INITIALIZED;
    //
    //        // Turn off immediate alert
    //        ProxReporter_SetParameter(PP_IM_ALERT_LEVEL, sizeof(valFalse), &valFalse);
    //        keyfobProxIMAlertLevel = PP_ALERT_LEVEL_NO;
    //        
    //        // Change attribute value of Accelerometer Enable to FALSE
    //        Accel_SetParameter(ACCEL_ENABLER, sizeof(valFalse), &valFalse);
    //        // Stop the acceleromter
    //        accelEnablerChangeCB(); // SetParameter does not trigger the callback
    //        
    //        // Turn off LED that shows we're advertising
    //        HalLedSet( HAL_LED_2, HAL_LED_MODE_OFF );
    //        
    //        // Stop alert if it was active
    //        if( keyfobAlertState != ALERT_STATE_OFF )
    //        {
    //          keyfobapp_StopAlert();
    //        }
    //      }
    //      break;
    
        case GAPROLE_WAITING_AFTER_TIMEOUT:
          {
            // the link was dropped due to supervision timeout
            keyfobProximityState = KEYFOB_PROXSTATE_LINK_LOSS;
    
            // Turn off immediate alert
            ProxReporter_SetParameter(PP_IM_ALERT_LEVEL, sizeof(valFalse), &valFalse);
            keyfobProxIMAlertLevel = PP_ALERT_LEVEL_NO;
            
            // Change attribute value of Accelerometer Enable to FALSE
            Accel_SetParameter(ACCEL_ENABLER, sizeof(valFalse), &valFalse);
            // Stop the acceleromter
            accelEnablerChangeCB(); // SetParameter does not trigger the callback
            
            // Perform link loss alert if enabled
            if( keyfobProxLLAlertLevel != PP_ALERT_LEVEL_NO )
            {
              keyfobapp_PerformAlert();
              buzzer_beep_count = 0;
            }
          }
          break;
    
        default:
          // do nothing
          break;
        }
      }
    
      gapProfileState = newState;
    }
    
    /*********************************************************************
     * @fn      proximityAttrCB
     *
     * @brief   Notification from the profile of an atrribute change by
     *          a connected device.
     *
     * @param   attrParamID - Profile's Attribute Parameter ID
     *            PP_LINK_LOSS_ALERT_LEVEL  - The link loss alert level value
     *            PP_IM_ALERT_LEVEL  - The immediate alert level value
     *
     * @return  none
     */
    
    static void proximityAttrCB( uint8 attrParamID )
    {
      switch( attrParamID )
      {
    
      case PP_LINK_LOSS_ALERT_LEVEL:
        ProxReporter_GetParameter( PP_LINK_LOSS_ALERT_LEVEL, &keyfobProxLLAlertLevel );
        break;
    
      case PP_IM_ALERT_LEVEL:
        {
          ProxReporter_GetParameter( PP_IM_ALERT_LEVEL, &keyfobProxIMAlertLevel );
    
          // if proximity monitor set the immediate alert level to low or high, then
          // the monitor calculated that the path loss to the keyfob (proximity observer)
          // has exceeded the threshold
          if( keyfobProxIMAlertLevel != PP_ALERT_LEVEL_NO )
          {
            keyfobProximityState = KEYFOB_PROXSTATE_PATH_LOSS;
            keyfobapp_PerformAlert();
            buzzer_beep_count = 0;
          }
          else // proximity monitor turned off alert because the path loss is below threshold
          {
            keyfobProximityState = KEYFOB_PROXSTATE_CONNECTED_IN_RANGE;
            keyfobapp_StopAlert();
          }
        }
        break;
    
      default:
        // should not reach here!
        break;
      }
    
    }
    
    /*********************************************************************
     * @fn      accelEnablerChangeCB
     *
     * @brief   Called by the Accelerometer Profile when the Enabler Attribute
     *          is changed.
     *
     * @param   none
     *
     * @return  none
     */
    static void accelEnablerChangeCB( void )
    {
      bStatus_t status = Accel_GetParameter( ACCEL_ENABLER, &accelEnabler );
    
      if (status == SUCCESS){
        if (accelEnabler)
        {
          // Initialize accelerometer
          accInit();
          // Setup timer for accelerometer task
          osal_start_timerEx( keyfobapp_TaskID, KFD_ACCEL_READ_EVT, ACCEL_READ_PERIOD );
        } else
        {
          // Stop the acceleromter
          accStop();
          osal_stop_timerEx( keyfobapp_TaskID, KFD_ACCEL_READ_EVT);
        }
      } else
      {
        //??
      }
    }
    /*********************************************************************
     * @fn      accelRead
     *
     * @brief   Called by the application to read accelerometer data
     *          and put data in accelerometer profile
     *
     * @param   none
     *
     * @return  none
     */
    static void accelRead( void )
    {
    
      static int8 x, y, z;
      int8 new_x, new_y, new_z;
    
      // Read data for each axis of the accelerometer
      accReadAcc(&new_x, &new_y, &new_z);
    
      // Check if x-axis value has changed by more than the threshold value and
      // set profile parameter if it has (this will send a notification if enabled)
      if( (x < (new_x-ACCEL_CHANGE_THRESHOLD)) || (x > (new_x+ACCEL_CHANGE_THRESHOLD)) )
      {
        x = new_x;
        Accel_SetParameter(ACCEL_X_ATTR, sizeof ( int8 ), &x);
      }
    
      // Check if y-axis value has changed by more than the threshold value and
      // set profile parameter if it has (this will send a notification if enabled)
      if( (y < (new_y-ACCEL_CHANGE_THRESHOLD)) || (y > (new_y+ACCEL_CHANGE_THRESHOLD)) )
      {
        y = new_y;
        Accel_SetParameter(ACCEL_Y_ATTR, sizeof ( int8 ), &y);
      }
    
      // Check if z-axis value has changed by more than the threshold value and
      // set profile parameter if it has (this will send a notification if enabled)
      if( (z < (new_z-ACCEL_CHANGE_THRESHOLD)) || (z > (new_z+ACCEL_CHANGE_THRESHOLD)) )
      {
        z = new_z;
        Accel_SetParameter(ACCEL_Z_ATTR, sizeof ( int8 ), &z);
      }
    
    }
    
    /*********************************************************************
    *********************************************************************/
    
    Nope, It does not connect.

    Should I send u the keyfobdemo.c file which we ae working with. Please find it attached

  • If you remove UART related code, does it connect?
  • Hi YiKai,

    Resolved that problem of not connecting

    Now the UART issue: we are not ablew to recieve the data

    //variable
    static uint8 read_buf[] = {0};
    
    //Uart callback function
    void uart0RxCb( uint8 port, uint8 event )
    {
     while (Hal_UART_RxBufLen(port))
     {
      HalUARTRead (port, read_buf, sizeof(read_buf));
     }
    }
    
    //in init Function
       {
       HalUARTInit();
         halUARTCfg_t uartConfig;
         uartConfig.configured           = TRUE;
         uartConfig.baudRate             = HAL_UART_BR_9600;
         uartConfig.flowControl          = FALSE;
         uartConfig.flowControlThreshold = 48;
         uartConfig.rx.maxBufSize        = 6;
         uartConfig.tx.maxBufSize        = 6;
      //   uartConfig.idleTimeout          = 6;  
         uartConfig.intEnable            = TRUE;             
         uartConfig.callBackFunc         = uart0RxCb;
       HalUARTOpen (HAL_UART_PORT_0, &uartConfig);
     }
    
    //in periodic function
       DevInfo_SetParameter(DEVINFO_EMAIL_ID, sizeof(read_buf),(char*)read_buf);
    

    Anything which I am missing in my code. Kindly help

    HAL_UART=TRUE
    HAL_UART_DMA=1

    Does DMA use flow control also????

    Thanks and regards.

    Siddharth

  • Can someone please help me out.
  • When you send something to UART, does uart0RxCb get called?
  • Hi YiKai,

    We cannot check that I dont have the debugger connected.

    We tried to check the size of the UartRXBuffer But its nothing there not even a '0' pops up on my mobile device
  • Please use debugger to check if uart0RxCb is called when you send UART messages.
  • We have planned to use DMA method instead of the polling.

    Power saving( xPOWER_SAVING) has been disabled and we are able to connect with BLE module seamlessly but still we are not getting expected data from UART.

    We are trying to receive data of 5 characters(for example 30.50) from UART but nothing is been recieved. We have changed the buffer size to 5 for both Rx and Tx buffer

    Should we disable Interrupt

    here is the code

    //haL uART
      {
       HalUARTInit();
         halUARTCfg_t uartConfig;
         uartConfig.configured           = TRUE;
         uartConfig.baudRate             = HAL_UART_BR_9600;
         uartConfig.flowControl          = FALSE;
         uartConfig.flowControlThreshold = 48;
         uartConfig.rx.maxBufSize        = 5;
         uartConfig.tx.maxBufSize        = 5;
         uartConfig.idleTimeout          = 255;  
         uartConfig.intEnable            = TRUE;             
         uartConfig.callBackFunc         = uart0RxCb;
       HalUARTOpen (HAL_UART_PORT_0, &uartConfig);
      }
    
    //Callback Function
    void uart0RxCb( uint8 port, uint8 event )
    {
     while (Hal_UART_RxBufLen(port))
     {
       HalUARTRead (port, read_buf, 5);
     }
    }
    

    and how do we convert uint8 array to cha* array

    DevInfo_SetParameter(DEVINFO_EMAIL_DATA_ID, 5, (cha*)read_buf);

    and here are the preprocessor settings

    HAL_UART=TRUE
    HAL_UART_DMA=1
    HAL_UART_DMA


    Kindly help us with the issue...

  • What do you mean to receive data 30.50 from UART?
  • Hi,

    Thats just an example('3','0','.','5','0')  Thats the data which is coming to the UART of cc2541.

    Siddharth

  • Why do you set

    uartConfig.rx.maxBufSize = 5;
    uartConfig.tx.maxBufSize = 5;

    ???
    Try to set them to

    uartConfig.rx.maxBufSize = 128;
    uartConfig.tx.maxBufSize = 128;