The MCR20A Wireless UART application functions as an wireless UART bridge between two (one-to-one) or several (one to many) boards. The application can be used with both a TERM, or with software that is capable of opening a serial port and writing to or reading from it. The characters sent or received are not necessarily ASCII printable characters.

Dependencies:   fsl_phy_mcr20a fsl_smac mbed-rtos mbed

Fork of mcr20_wireless_uart by Freescale

By default, the application uses broadcast addresses for OTA communication. This way, the application can be directly downloaded and run without any user intervention. The following use case assumes no changes have been done to the project.

  • Two (or more) MCR20A platforms (plugged into the FRDM-K64F Freescale Freedom Development platform) have to be connected to the PC using the mini/micro-USB cables.
  • The code must be downloaded on the platforms via CMSIS-DAP (or other means).
  • After that, two or more TERM applications must be opened, and the serial ports must be configured with the same baud rate as the one in the project (default baud rate is 115200). Other necessary serial configurations are 8 bit, no parity, and 1 stop bit.
  • To start the setup, each platform must be reset, and one of the (user) push buttons found on the MCR20A platform must be pressed. The user can press any of the non-reset buttons on the FRDM-K64F Freescale Freedom Development platform as well. *This initiates the state machine of the application so user can start.

Documentation

SMAC Demo Applications User Guide

Revision:
18:b02fc0e53df8
Parent:
17:52cfd7db8da3
Child:
19:71b793021c78
--- a/RF_Drivers_Freescale/MCR20Drv/MCR20Drv.c	Wed Mar 18 18:52:47 2015 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,736 +0,0 @@
-/*!
-* Copyright (c) 2015, Freescale Semiconductor, Inc.
-* All rights reserved.
-*
-* \file MCR20Drv.c
-*
-* Redistribution and use in source and binary forms, with or without modification,
-* are permitted provided that the following conditions are met:
-*
-* o Redistributions of source code must retain the above copyright notice, this list
-*   of conditions and the following disclaimer.
-*
-* o Redistributions in binary form must reproduce the above copyright notice, this
-*   list of conditions and the following disclaimer in the documentation and/or
-*   other materials provided with the distribution.
-*
-* o Neither the name of Freescale Semiconductor, Inc. nor the names of its
-*   contributors may be used to endorse or promote products derived from this
-*   software without specific prior written permission.
-*
-* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
-* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-*/
-
-
-/*****************************************************************************
-*                               INCLUDED HEADERS                            *
-*---------------------------------------------------------------------------*
-* Add to this section all the headers that this module needs to include.    *
-*---------------------------------------------------------------------------*
-*****************************************************************************/
-
-#include "MCR20Drv.h"
-#include "MCR20Reg.h"
-
-#include "XcvrSpi.h"
-#include "arm_hal_interrupt.h"
-
-/*****************************************************************************
-*                               PRIVATE VARIABLES                           *
-*---------------------------------------------------------------------------*
-* Add to this section all the variables and constants that have local       *
-* (file) scope.                                                             *
-* Each of this declarations shall be preceded by the 'static' keyword.      *
-* These variables / constants cannot be accessed outside this module.       *
-*---------------------------------------------------------------------------*
-*****************************************************************************/
-static uint32_t mPhyIrqDisableCnt = 1;
-
-/*****************************************************************************
-*                               PUBLIC VARIABLES                            *
-*---------------------------------------------------------------------------*
-* Add to this section all the variables and constants that have global      *
-* (project) scope.                                                          *
-* These variables / constants can be accessed outside this module.          *
-* These variables / constants shall be preceded by the 'extern' keyword in  *
-* the interface header.                                                     *
-*---------------------------------------------------------------------------*
-*****************************************************************************/
-
-/*****************************************************************************
-*                           PRIVATE FUNCTIONS PROTOTYPES                    *
-*---------------------------------------------------------------------------*
-* Add to this section all the functions prototypes that have local (file)   *
-* scope.                                                                    *
-* These functions cannot be accessed outside this module.                   *
-* These declarations shall be preceded by the 'static' keyword.             *
-*---------------------------------------------------------------------------*
-*****************************************************************************/
-
-/*****************************************************************************
-*                                PRIVATE FUNCTIONS                          *
-*---------------------------------------------------------------------------*
-* Add to this section all the functions that have local (file) scope.       *
-* These functions cannot be accessed outside this module.                   *
-* These definitions shall be preceded by the 'static' keyword.              *
-*---------------------------------------------------------------------------*
-*****************************************************************************/
-
-
-/*****************************************************************************
-*                             PUBLIC FUNCTIONS                              *
-*---------------------------------------------------------------------------*
-* Add to this section all the functions that have global (project) scope.   *
-* These functions can be accessed outside this module.                      *
-* These functions shall have their declarations (prototypes) within the     *
-* interface header file and shall be preceded by the 'extern' keyword.      *
-*---------------------------------------------------------------------------*
-*****************************************************************************/
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_Init
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_Init
-(
-void
-)
-{
-    spi_master_init(gXcvrSpiInstance_c);
-    spi_master_configure_speed(gXcvrSpiInstance_c, 8000000);
-
-    gXcvrDeassertCS_d();
-    MCR20Drv_RST_B_Deassert();
-    //MCR20Drv_RESET();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_DirectAccessSPIWrite
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_DirectAccessSPIWrite
-(
-uint8_t address,
-uint8_t value
-)
-{
-    uint16_t txData;
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 16000000);
-
-    gXcvrAssertCS_d();
-
-    txData = (address & TransceiverSPI_DirectRegisterAddressMask);
-    txData |= value << 8;
-
-    spi_master_transfer(gXcvrSpiInstance_c, (uint8_t *)&txData, NULL, sizeof(txData));
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_DirectAccessSPIMultiByteWrite
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_DirectAccessSPIMultiByteWrite
-(
-uint8_t startAddress,
-uint8_t * byteArray,
-uint8_t numOfBytes
-)
-{
-    uint8_t txData;
-
-    if( (numOfBytes == 0) || (byteArray == NULL) )
-    {
-        return;
-    }
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 16000000);
-
-    gXcvrAssertCS_d();
-
-    txData = (startAddress & TransceiverSPI_DirectRegisterAddressMask);
-
-    spi_master_transfer(gXcvrSpiInstance_c, &txData, NULL, sizeof(txData));
-    spi_master_transfer(gXcvrSpiInstance_c, byteArray, NULL, numOfBytes);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_PB_SPIByteWrite
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_PB_SPIByteWrite
-(
-uint8_t address,
-uint8_t value
-)
-{
-    uint32_t txData;
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 16000000);
-
-    gXcvrAssertCS_d();
-
-    txData  = TransceiverSPI_WriteSelect            |
-        TransceiverSPI_PacketBuffAccessSelect |
-            TransceiverSPI_PacketBuffByteModeSelect;
-    txData |= (address) << 8;
-    txData |= (value)   << 16;
-
-    spi_master_transfer(gXcvrSpiInstance_c, (uint8_t*)&txData, NULL, 3);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_PB_SPIBurstWrite
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_PB_SPIBurstWrite
-(
-uint8_t * byteArray,
-uint8_t numOfBytes
-)
-{
-    uint8_t txData;
-
-    if( (numOfBytes == 0) || (byteArray == NULL) )
-    {
-        return;
-    }
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 16000000);
-
-    gXcvrAssertCS_d();
-
-    txData = TransceiverSPI_WriteSelect            |
-        TransceiverSPI_PacketBuffAccessSelect |
-            TransceiverSPI_PacketBuffBurstModeSelect;
-
-    spi_master_transfer(gXcvrSpiInstance_c, &txData, NULL, 1);
-    spi_master_transfer(gXcvrSpiInstance_c, byteArray, NULL, numOfBytes);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_DirectAccessSPIRead
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-
-uint8_t MCR20Drv_DirectAccessSPIRead
-(
-uint8_t address
-)
-{
-    uint8_t txData;
-    uint8_t rxData;
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 8000000);
-
-    gXcvrAssertCS_d();
-
-    txData = (address & TransceiverSPI_DirectRegisterAddressMask) |
-        TransceiverSPI_ReadSelect;
-
-    spi_master_transfer(gXcvrSpiInstance_c, &txData, NULL, sizeof(txData));
-    spi_master_transfer(gXcvrSpiInstance_c, NULL, &rxData, sizeof(rxData));
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-
-    return rxData;
-
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_DirectAccessSPIMultyByteRead
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-uint8_t MCR20Drv_DirectAccessSPIMultiByteRead
-(
-uint8_t startAddress,
-uint8_t * byteArray,
-uint8_t numOfBytes
-)
-{
-    uint8_t  txData;
-    uint8_t  phyIRQSTS1;
-
-    if( (numOfBytes == 0) || (byteArray == NULL) )
-    {
-        return 0;
-    }
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 8000000);
-
-    gXcvrAssertCS_d();
-
-    txData = (startAddress & TransceiverSPI_DirectRegisterAddressMask) |
-        TransceiverSPI_ReadSelect;
-
-    spi_master_transfer(gXcvrSpiInstance_c, &txData, &phyIRQSTS1, sizeof(txData));
-    spi_master_transfer(gXcvrSpiInstance_c, NULL, byteArray, numOfBytes);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-
-    return phyIRQSTS1;
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_PB_SPIBurstRead
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-uint8_t MCR20Drv_PB_SPIBurstRead
-(
-uint8_t * byteArray,
-uint8_t numOfBytes
-)
-{
-    uint8_t  txData;
-    uint8_t  phyIRQSTS1;
-
-    if( (numOfBytes == 0) || (byteArray == NULL) )
-    {
-        return 0;
-    }
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 8000000);
-
-    gXcvrAssertCS_d();
-
-    txData = TransceiverSPI_ReadSelect |
-        TransceiverSPI_PacketBuffAccessSelect |
-            TransceiverSPI_PacketBuffBurstModeSelect;
-
-    spi_master_transfer(gXcvrSpiInstance_c, &txData, &phyIRQSTS1, sizeof(txData));
-    spi_master_transfer(gXcvrSpiInstance_c, NULL, byteArray, numOfBytes);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-
-    return phyIRQSTS1;
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IndirectAccessSPIWrite
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_IndirectAccessSPIWrite
-(
-uint8_t address,
-uint8_t value
-)
-{
-    uint32_t  txData;
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 16000000);
-
-    gXcvrAssertCS_d();
-
-    txData = TransceiverSPI_IARIndexReg;
-    txData |= (address) << 8;
-    txData |= (value)   << 16;
-
-    spi_master_transfer(gXcvrSpiInstance_c, (uint8_t*)&txData, NULL, 3);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IndirectAccessSPIMultiByteWrite
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_IndirectAccessSPIMultiByteWrite
-(
-uint8_t startAddress,
-uint8_t * byteArray,
-uint8_t numOfBytes
-)
-{
-    uint16_t  txData;
-
-    if( (numOfBytes == 0) || (byteArray == NULL) )
-    {
-        return;
-    }
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 16000000);
-
-    gXcvrAssertCS_d();
-
-    txData = TransceiverSPI_IARIndexReg;
-    txData |= (startAddress)  << 8;
-
-    spi_master_transfer(gXcvrSpiInstance_c, (uint8_t*)&txData, NULL, sizeof(txData));
-    spi_master_transfer(gXcvrSpiInstance_c, (uint8_t*)byteArray, NULL, numOfBytes);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IndirectAccessSPIRead
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-uint8_t MCR20Drv_IndirectAccessSPIRead
-(
-uint8_t address
-)
-{
-    uint16_t  txData;
-    uint8_t   rxData;
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 8000000);
-
-    gXcvrAssertCS_d();
-
-    txData = TransceiverSPI_IARIndexReg | TransceiverSPI_ReadSelect;
-    txData |= (address) << 8;
-
-    spi_master_transfer(gXcvrSpiInstance_c, (uint8_t*)&txData, NULL, sizeof(txData));
-    spi_master_transfer(gXcvrSpiInstance_c, NULL, &rxData, sizeof(rxData));
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-
-    return rxData;
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IndirectAccessSPIMultiByteRead
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_IndirectAccessSPIMultiByteRead
-(
-uint8_t startAddress,
-uint8_t * byteArray,
-uint8_t numOfBytes
-)
-{
-    uint16_t  txData;
-
-    if( (numOfBytes == 0) || (byteArray == NULL) )
-    {
-        return;
-    }
-
-    ProtectFromMCR20Interrupt();
-
-    spi_master_configure_speed(gXcvrSpiInstance_c, 8000000);
-
-    gXcvrAssertCS_d();
-
-    txData = (TransceiverSPI_IARIndexReg | TransceiverSPI_ReadSelect);
-    txData |= (startAddress) << 8;
-
-    spi_master_transfer(gXcvrSpiInstance_c, (uint8_t*)&txData, NULL, sizeof(txData));
-    spi_master_transfer(gXcvrSpiInstance_c, NULL, byteArray, numOfBytes);
-
-    gXcvrDeassertCS_d();
-    UnprotectFromMCR20Interrupt();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IRQ_PortConfig
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_IRQ_PortConfig
-(
-void
-)
-{
-#if 0
-    PORT_HAL_SetMuxMode(g_portBaseAddr[GPIO_EXTRACT_PORT(kGpioXcvrIrqPin)],
-                        GPIO_EXTRACT_PIN(kGpioXcvrIrqPin),
-                        kPortMuxAsGpio);
-    GPIO_DRV_InputPinInit(&mXcvrIrqPinCfg);
-#endif
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IsIrqPending
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-uint32_t  MCR20Drv_IsIrqPending
-(
-void
-)
-{
-    if( !RF_isIRQ_Pending() )
-    {
-        return TRUE;
-    }
-
-    return FALSE;
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IRQ_Disable
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_IRQ_Disable
-(
-void
-)
-{
-    arm_enter_critical();
-
-    if( mPhyIrqDisableCnt == 0 )
-    {
-        RF_IRQ_Disable();
-    }
-
-    mPhyIrqDisableCnt++;
-
-    arm_exit_critical();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IRQ_Enable
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_IRQ_Enable
-(
-void
-)
-{
-    arm_enter_critical();
-
-    if( mPhyIrqDisableCnt )
-    {
-        mPhyIrqDisableCnt--;
-
-        if( mPhyIrqDisableCnt == 0 )
-        {
-            RF_IRQ_Enable();
-        }
-    }
-
-    arm_exit_critical();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IRQ_IsEnabled
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-uint32_t MCR20Drv_IRQ_IsEnabled
-(
-void
-)
-{
-  
-#if 0
-    port_interrupt_config_t mode;
-
-    mode = PORT_HAL_GetPinIntMode(g_portBaseAddr[GPIO_EXTRACT_PORT(kGpioXcvrIrqPin)],
-                                  GPIO_EXTRACT_PIN(kGpioXcvrIrqPin));
-    return (mode != kPortIntDisabled);
-#endif
-    return 0;
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_IRQ_Clear
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_IRQ_Clear
-(
-void
-)
-{
-    //GPIO_DRV_ClearPinIntFlag(kGpioXcvrIrqPin);
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_RST_Assert
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_RST_B_Assert
-(
-void
-)
-{
-    RF_RST_Set(0);
-    //GPIO_DRV_ClearPinOutput(kGpioXcvrResetPin);
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_RST_Deassert
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_RST_B_Deassert
-(
-void
-)
-{
-    RF_RST_Set(1);
-    //GPIO_DRV_SetPinOutput(kGpioXcvrResetPin);
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_SoftRST_Assert
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_SoftRST_Assert
-(
-void
-)
-{
-    MCR20Drv_IndirectAccessSPIWrite(SOFT_RESET, (0x80));
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_SoftRST_Deassert
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_SoftRST_Deassert
-(
-void
-)
-{
-    MCR20Drv_IndirectAccessSPIWrite(SOFT_RESET, (0x00));
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_Soft_RESET
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_Soft_RESET
-(
-void
-)
-{
-    //assert SOG_RST
-    MCR20Drv_IndirectAccessSPIWrite(SOFT_RESET, (0x80));
-
-    //deassert SOG_RST
-    MCR20Drv_IndirectAccessSPIWrite(SOFT_RESET, (0x00));
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_RESET
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_RESET
-(
-void
-)
-{
-    volatile uint32_t delay = 1000;
-    //assert RST_B
-    MCR20Drv_RST_B_Assert();
-
-    // TODO
-    while(delay--);
-
-    //deassert RST_B
-    MCR20Drv_RST_B_Deassert();
-}
-
-/*---------------------------------------------------------------------------
-* Name: MCR20Drv_Set_CLK_OUT_Freq
-* Description: -
-* Parameters: -
-* Return: -
-*---------------------------------------------------------------------------*/
-void MCR20Drv_Set_CLK_OUT_Freq
-(
-uint8_t freqDiv
-)
-{
-    uint8_t clkOutCtrlReg = (freqDiv & cCLK_OUT_DIV_Mask) | cCLK_OUT_EN | cCLK_OUT_EXTEND;
-
-    if(freqDiv == gCLK_OUT_FREQ_DISABLE)
-    {
-        clkOutCtrlReg = (cCLK_OUT_EXTEND | gCLK_OUT_FREQ_4_MHz); //reset value with clock out disabled
-    }
-
-    MCR20Drv_DirectAccessSPIWrite((uint8_t) CLK_OUT_CTRL, clkOutCtrlReg);
-}