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.

CCS/LAUNCHXL-F28069M: How to merge PWM - SymmetricPWM with sci_echoback

Part Number: LAUNCHXL-F28069M
Other Parts Discussed in Thread: CONTROLSUITE, , LAUNCHXL-F28027

Tool/software: Code Composer Studio

I want to combine the examples below.

C:\ti\controlSUITE\development_kits\F28069 controlSTICK\PWM - SymmetricPWM

C:\ti\controlSUITE\device_support\f2806x\v151\F2806x_examples_ccsv5\sci_echoback

As you know there are many sub files in these examples.

For symmetric pwm => F2806x_CodeStartBranch.asm, F2806x_FLASH_SymmetricPWM.CMD, F2806x_GlobalVariableDefs.c, F2806x_Headers_nonBIOS.cmd, DevInit_F2806x.c

For sci echoback these files are extra => F2806x_PieCtrl.c, F2806x_PieVect.c, F2806x_Sci.c, F2806x_SysCtrl.c, F2806x_usDelay.asm, F2806x_DefaultIsr.c, 28069_RAM_lnk.cmd

When I add one example with these files and their include libraries to other, there are many errors. Also one example is for FLASH, the other is for RAM.

Is it possible to merge these examples? Their file order is confused me. I am a bit new about LAUNCHXL-F28069M kit. Maybe LAUNCHXL-F28027 would be easier for me.

What I actually want is to send duty values of pwm signals from my computer with a visual studio interface or at least hypertrm. What connection do you suggest for sending pwm parameters to launchxl kit from computer?

Thanks for your attention.

  • John,

    you definitely can combine these examples! If your new to the embedded world, or even new to C2000 I think the Multi-Day Workshop would be very helpful for you. It will introduce you to things like a linker command file (*.cmd) and why we have a CodeBranchStart.asm. Knowing these things, and a few others, should make merging the files pretty simple.

    The workshop should describe both RAM and Flash based examples, as well as the quarks between the two.

    Both LaunchPads that you have mentioned use very similar coding styles, I don't think one is easier than the other.

    Because you are using a LaunchPad, using the SCI module to a terminal program should be convenient. All you will need is a USB connection to the computer, the echoback example shows how to do this nicely.


    Regards,
    Cody 

  • Thank you Cody, Multi-Day workshop really gave me an idea about file types and why we need that.

    Actually I could combine "C:\ti\controlSUITE\development_kits\F28069 controlSTICK\ADC - ContinuousADC" and "C:\ti\controlSUITE\development_kits\F28069 controlSTICK\PWM - SymmetricPWM" perfectly before because their versions were the same (v100) and they were FLASH based. I could change my duty cycle with my ADC voltage feedback etc.

    But "C:\ti\controlSUITE\device_support\f2806x\v151\F2806x_examples_ccsv5\sci_echoback" is another story for me. :)

    I could equalize the versions by using "C:\ti\controlSUITE\device_support\f2806x\v100\F2806x_examples\sci_echoback" but that version is not working properly. PC only sent the chars but did not receive. On the other hand, v151 is perfect.

    According to the version, F2806x_common and F2806x_headers include libraries change and that is another error reason. V100 sample gave errors to V151 include libs. 

    sci_echoback's active mode is debug mode. I mean, what is debug mode exactly? My pwm control program is on FLASH mode and how will I make sci_echoback active for FLASH. Maybe pwm program will work on FLASH and sci on debug seperately but I don't know how.

    When I look for other merged samples I could not find any for f28069 but I could find for f28027.

    I am so confused and desperate that I want to find someone that will merge for me at the moment. :D 

  • John,

    I am unfamiliar with the changes between v100 and v150 I expect that the changes are small.

    I see a few ways to proceed with your debug.

    1. Debug why the v100 example isn't transmitting, then merge.
      1. The SCI module is pretty simple, so this shouldn't be too hard
    2. Merge the required v150 header files into the SymmetricPWM example.
      1. This should be possible as well, start by merging the SCI commands from the v150 files to the SymmetricPWM example and preform LOTS of incremental builds solving problems as the popup. 
    3. You could just write the SCI commands into the SymmetricPWM example and debug as needed. You should be able to get this going in an hour or two if you have some knowledge of UART.

    Hope it helps,
    Cody 

  • John,
    it's good to see you fixed your issue, did you find the root cause? If so please post here to help others in the future!

    Regards,
    Cody
  • Hey Cody,

    First of all, thanks for your great support. 

    As you know, PWM - SymmetricPWM's  F2806x_common and F2806x_headers include files are V100. I have updated to V151 first. Then started merging with sci_echoback V151. Because sci_echoback V100 were not working properly.

    There were some common files. F2806x_PieVect.c  gave an error about pievecttable so I used sci_echoback's F2806x_GlobalVariableDefs.c, closed the codes below inside DevInit and that problem is solved.

    /*void PieVectTableInit(void)
    {
        int16 i;
        PINT *Dest = &PieVectTable.TINT1;
    
        EALLOW;
        for(i=0; i < 115; i++)
        *Dest++ = &ISR_ILLEGAL;
        EDIS;
     
        // Enable the PIE Vector Table
        PieCtrlRegs.PIECTRL.bit.ENPIE = 1;
    }*/

    Because there is already one inside F2806x_PieVect.c. It is slightly different but, hmm... :D I will think about it later.

    void InitPieVectTable(void)
    {
    	int16	i;
    	Uint32 *Source = (void *) &PieVectTableInit;
    	Uint32 *Dest = (void *) &PieVectTable;
    
    	// Do not write over first 3 32-bit locations (these locations are
    	// initialized by Boot ROM with boot variables)
    
    	Source = Source + 3;
    	Dest = Dest + 3;
    
    	EALLOW;
    	for(i=0; i < 125; i++)
    		*Dest++ = *Source++;
    	EDIS;
    
    	// Enable the PIE Vector Table
    	PieCtrlRegs.PIECTRL.bit.ENPIE = 1;
    
    }

    At the moment, these 2 examples work seperately at the same file. Because these files are for same purpose: symmetric pwm's DevInit_F2806x .c

    //============================================================================
    //============================================================================
    //
    // FILE:	SymmetricPWM-DevInit_F2806x.c
    //
    // TITLE:	Device initialization for F2806x series
    // 
    // Version: 1.0 	
    //
    // Date: 	30 Nov 10 	VSC
    //============================================================================
    //============================================================================
    
    #include "PeripheralHeaderIncludes.h"
    
    // Functions that will be run from RAM need to be assigned to
    // a different section.  This section will then be mapped to a load and
    // run address using the linker cmd file.
    #pragma CODE_SECTION(InitFlash, "ramfuncs");
    #define Device_cal (void   (*)(void))0x3D7C80
    
    void DeviceInit(void);
    void PieCntlInit(void);
    //void PieVectTableInit(void);
    void WDogDisable(void);
    void PLLset(Uint16);
    void ISR_ILLEGAL(void);
    
    //--------------------------------------------------------------------
    //  Configure Device for target Application Here
    //--------------------------------------------------------------------
    void DeviceInit(void)
    {
        WDogDisable();  // Disable the watchdog initially
            DINT;           // Global Disable all Interrupts
            IER = 0x0000;   // Disable CPU interrupts
            IFR = 0x0000;   // Clear all CPU interrupt flags
    
    
        // The Device_cal function, which copies the ADC & oscillator calibration values
        // from TI reserved OTP into the appropriate trim registers, occurs automatically
        // in the Boot ROM. If the boot ROM code is bypassed during the debug process, the
        // following function MUST be called for the ADC and oscillators to function according
        // to specification.
            EALLOW;
            SysCtrlRegs.PCLKCR0.bit.ADCENCLK = 1; // Enable ADC peripheral clock
            (*Device_cal)();                      // Auto-calibrate from TI OTP
            SysCtrlRegs.PCLKCR0.bit.ADCENCLK = 0; // Return ADC clock to original state
            EDIS;
    
    
        // Switch to Internal Oscillator 1 and turn off all other clock
        // sources to minimize power consumption
            EALLOW;
            SysCtrlRegs.CLKCTL.bit.INTOSC1OFF = 0;
            SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL=0;  // Clk Src = INTOSC1
            SysCtrlRegs.CLKCTL.bit.XCLKINOFF=1;     // Turn off XCLKIN
            SysCtrlRegs.CLKCTL.bit.XTALOSCOFF=1;    // Turn off XTALOSC
            SysCtrlRegs.CLKCTL.bit.INTOSC2OFF=1;    // Turn off INTOSC2
            EDIS;
    
    
        // SYSTEM CLOCK speed based on internal oscillator = 10 MHz
        // 0x10=  80    MHz     (16)
        // 0xF =  75    MHz     (15)
        // 0xE =  70    MHz     (14)
        // 0xD =  65    MHz     (13)
        // 0xC =  60    MHz     (12)
        // 0xB =  55    MHz     (11)
        // 0xA =  50    MHz     (10)
        // 0x9 =  45    MHz     (9)
        // 0x8 =  40    MHz     (8)
        // 0x7 =  35    MHz     (7)
        // 0x6 =  30    MHz     (6)
        // 0x5 =  25    MHz     (5)
        // 0x4 =  20    MHz     (4)
        // 0x3 =  15    MHz     (3)
        // 0x2 =  10    MHz     (2)
    
    
               // PLLset( 0x10 ); // choose from options above
    
    
        // Initialise interrupt controller and Vector Table
        // to defaults for now. Application ISR mapping done later.
            //PieCntlInit();
            //PieVectTableInit();
             EALLOW; // below registers are "protected", allow access.
    
        // LOW SPEED CLOCKS prescale register settings
           SysCtrlRegs.LOSPCP.all = 0x0002;     // Sysclk / 4 (20 MHz)
           SysCtrlRegs.XCLK.bit.XCLKOUTDIV=2;
    
    
    
        // PERIPHERAL CLOCK ENABLES
        //---------------------------------------------------
        // If you are not using a peripheral you may want to switch
        // the clock off to save power, i.e. set to =0
        //
        // Note: not all peripherals are available on all 280x derivates.
        // Refer to the datasheet for your particular device.
    
           SysCtrlRegs.PCLKCR0.bit.ADCENCLK = 1;    // ADC
           //------------------------------------------------
           SysCtrlRegs.PCLKCR3.bit.COMP1ENCLK = 0;  // COMP1
           SysCtrlRegs.PCLKCR3.bit.COMP2ENCLK = 0;  // COMP2
           SysCtrlRegs.PCLKCR3.bit.COMP3ENCLK = 0;  // COMP3
           //------------------------------------------------
           SysCtrlRegs.PCLKCR0.bit.I2CAENCLK = 0;   // I2C
           //------------------------------------------------
           SysCtrlRegs.PCLKCR0.bit.SPIAENCLK = 0;   // SPI-A
           SysCtrlRegs.PCLKCR0.bit.SPIBENCLK = 0;   //SPI-B
           //------------------------------------------------
           SysCtrlRegs.PCLKCR0.bit.MCBSPAENCLK = 0; //McBSP-A
           //------------------------------------------------
           SysCtrlRegs.PCLKCR0.bit.SCIAENCLK = 0;   // SCI-A
           SysCtrlRegs.PCLKCR0.bit.SCIBENCLK = 0;   //SCI-B
           //------------------------------------------------
           SysCtrlRegs.PCLKCR1.bit.ECAP1ENCLK = 0;  //eCAP1
           SysCtrlRegs.PCLKCR1.bit.ECAP2ENCLK = 0;  // eCAP2
           SysCtrlRegs.PCLKCR1.bit.ECAP3ENCLK = 0;  // eCAP3
           //------------------------------------------------
           SysCtrlRegs.PCLKCR1.bit.EPWM1ENCLK = 1;  // ePWM1
           SysCtrlRegs.PCLKCR1.bit.EPWM2ENCLK = 0;  // ePWM2
           SysCtrlRegs.PCLKCR1.bit.EPWM3ENCLK = 0;  // ePWM3
           SysCtrlRegs.PCLKCR1.bit.EPWM4ENCLK = 0;  // ePWM4
           SysCtrlRegs.PCLKCR1.bit.EPWM5ENCLK = 0;  // ePWM5
           SysCtrlRegs.PCLKCR1.bit.EPWM6ENCLK = 0;  // ePWM6
           SysCtrlRegs.PCLKCR1.bit.EPWM7ENCLK = 0;  // ePWM7
           SysCtrlRegs.PCLKCR1.bit.EPWM8ENCLK = 0;  // ePWM8
           //------------------------------------------------
           SysCtrlRegs.PCLKCR0.bit.TBCLKSYNC = 1;   // Enable TBCLK
           //------------------------------------------------
           SysCtrlRegs.PCLKCR3.bit.DMAENCLK = 0;    // DMA
           //------------------------------------------------
           SysCtrlRegs.PCLKCR3.bit.CLA1ENCLK = 0;   // CLA
           //------------------------------------------------
    
           //--------------------------------------------------------------------------------------
            // GPIO (GENERAL PURPOSE I/O) CONFIG
            //--------------------------------------------------------------------------------------
            //-----------------------
            // QUICK NOTES on USAGE:
            //-----------------------
            // If GpioCtrlRegs.GP?MUX?bit.GPIO?= 1, 2 or 3 (i.e. Non GPIO func), then leave
            //  rest of lines commented
            // If GpioCtrlRegs.GP?MUX?bit.GPIO?= 0 (i.e. GPIO func), then:
            //  1) uncomment GpioCtrlRegs.GP?DIR.bit.GPIO? = ? and choose pin to be IN or OUT
            //  2) If IN, can leave next to lines commented
            //  3) If OUT, uncomment line with ..GPACLEAR.. to force pin LOW or
            //             uncomment line with ..GPASET.. to force pin HIGH or
            //--------------------------------------------------------------------------------------
            //--------------------------------------------------------------------------------------
            //  GPIO-00 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO0 = 1;     // 0=GPIO, 1=EPWM1A, 2=Resv, 3=Resv
                GpioCtrlRegs.GPADIR.bit.GPIO0 = 1;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO0 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO0 = 1;      // uncomment if --> Set High initially
            //    GpioCtrlRegs.GPAPUD.bit.GPIO0 = 1;      // Disable pull-up on GPIO0 (EPWM1A)
            //--------------------------------------------------------------------------------------
            //  GPIO-01 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO1 = 1;     // 0=GPIO, 1=EPWM1B, 2=EMU (0), 3=COMP1OUT
                GpioCtrlRegs.GPADIR.bit.GPIO1 = 1;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO1 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO1 = 1;      // uncomment if --> Set High initially
    
            //--------------------------------------------------------------------------------------
            //  GPIO-02 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO2 = 0;     // 0=GPIO, 1=EPWM2A, 2=Resv, 3=Resv
                GpioCtrlRegs.GPADIR.bit.GPIO2 = 0;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO2 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO2 = 1;      // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-03 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO3 = 0;     // 0=GPIO, 1=EPWM2B, 2=SPISOMIA, 3=COMP2OUT
                GpioCtrlRegs.GPADIR.bit.GPIO3 = 0;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO3 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO3 = 1;      // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-04 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO4 = 0;     // 0=GPIO, 1=EPWM3A, 2=Resv, 3=Resv
                GpioCtrlRegs.GPADIR.bit.GPIO4 = 0;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO4 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO4 = 1;      // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-05 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO5 = 0;     // 0=GPIO, 1=EPWM3B, 2=SPISIMOA, 3=ECAP1
                GpioCtrlRegs.GPADIR.bit.GPIO5 = 0;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO5 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO5 = 1;      // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-06 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO6 = 0;     // 0=GPIO, 1=EPWM4A, 2=EPWMSYNCI, 3=EPWMSYNCO
                GpioCtrlRegs.GPADIR.bit.GPIO6 = 0;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO6 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO6 = 1;      // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-07 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO7 = 0;     // 0=GPIO, 1=EPWM4B, 2=SCIRXDA, 3=ECAP2
                GpioCtrlRegs.GPADIR.bit.GPIO7 = 0;      // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO7 = 1;    // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO7 = 1;      // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-12 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX1.bit.GPIO12 = 0;    // 0=GPIO, 1=TZ1n, 2=SCITXDA, 3=SPISIMOB
                GpioCtrlRegs.GPADIR.bit.GPIO12 = 0;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO12 = 1;   // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO12 = 1;     // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-16 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX2.bit.GPIO16 = 0;    // 0=GPIO, 1=SPISIMOA, 2=Resv CAN-B, 3=TZ2n
                GpioCtrlRegs.GPADIR.bit.GPIO16 = 0;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO16 = 1;   // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO16 = 1;     // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-17 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX2.bit.GPIO17 = 0;    // 0=GPIO, 1=SPISOMIA, 2=Resv CAN-B, 3=TZ3n
                GpioCtrlRegs.GPADIR.bit.GPIO17 = 0;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO17 = 1;   // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO17 = 1;     // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-18 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX2.bit.GPIO18 = 0;    // 0=GPIO, 1=SPICLKA, 2=SCITXDB, 3=XCLKOUT
                GpioCtrlRegs.GPADIR.bit.GPIO18 = 0;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO18 = 1;   // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO18 = 1;     // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-19 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPAMUX2.bit.GPIO19 = 0;    // 0=GPIO, 1=SPISTEA, 2=SCIRXDB, 3=ECAP1
                GpioCtrlRegs.GPADIR.bit.GPIO19 = 0;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPACLEAR.bit.GPIO19 = 1;   // uncomment if --> Set Low initially
            //  GpioDataRegs.GPASET.bit.GPIO19 = 1;     // uncomment if --> Set High initially
            //  GpioCtrlRegs.GPAPUD.bit.GPIO19 = 1;
    
            //--------------------------------------------------------------------------------------
            //  GPIO-32 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPBMUX1.bit.GPIO32 = 0;    // 0=GPIO,  1=I2C-SDA,  2=SYNCI,  3=ADCSOCA
                GpioCtrlRegs.GPBDIR.bit.GPIO32 = 0;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPBCLEAR.bit.GPIO32 = 1;   // uncomment if --> Set Low initially
            //  GpioDataRegs.GPBSET.bit.GPIO32 = 1;     // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-33 - PIN FUNCTION = --Spare--
                GpioCtrlRegs.GPBMUX1.bit.GPIO33 = 0;    // 0=GPIO,  1=I2C-SCL,  2=SYNCO,  3=ADCSOCB
                GpioCtrlRegs.GPBDIR.bit.GPIO33 = 0;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPBCLEAR.bit.GPIO33 = 1;   // uncomment if --> Set Low initially
            //  GpioDataRegs.GPBSET.bit.GPIO33 = 1;     // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            //  GPIO-34 - PIN FUNCTION = LED for F2806x USB dongle
                GpioCtrlRegs.GPBMUX1.bit.GPIO34 = 0;    // 0=GPIO,  1=COMP2OUT,  2=EMU1,  3=Resv
                GpioCtrlRegs.GPBDIR.bit.GPIO34 = 1;     // 1=OUTput,  0=INput
            //  GpioDataRegs.GPBCLEAR.bit.GPIO34 = 1;   // uncomment if --> Set Low initially
                GpioDataRegs.GPBSET.bit.GPIO34 = 1;     // uncomment if --> Set High initially
            //--------------------------------------------------------------------------------------
            EDIS;   // Disable register access
    }
    
    
    
    //============================================================================
    // NOTE:
    // IN MOST APPLICATIONS THE FUNCTIONS AFTER THIS POINT CAN BE LEFT UNCHANGED
    // THE USER NEED NOT REALLY UNDERSTAND THE BELOW CODE TO SUCCESSFULLY RUN THIS
    // APPLICATION.
    //============================================================================
    
    void WDogDisable(void)
    {
        EALLOW;
        SysCtrlRegs.WDCR= 0x0068;
        EDIS;
    }
    
    // This function initializes the PLLCR register.
    //void InitPll(Uint16 val, Uint16 clkindiv)
    void PLLset(Uint16 val)
    {
       volatile Uint16 iVol;
    
       // Make sure the PLL is not running in limp mode
       if (SysCtrlRegs.PLLSTS.bit.MCLKSTS != 0)
       {
    	  EALLOW;
          // OSCCLKSRC1 failure detected. PLL running in limp mode.
          // Re-enable missing clock logic.
          SysCtrlRegs.PLLSTS.bit.MCLKCLR = 1;
          EDIS;
          // Replace this line with a call to an appropriate
          // SystemShutdown(); function.
          asm("        ESTOP0");     // Uncomment for debugging purposes
       }
    
       // DIVSEL MUST be 0 before PLLCR can be changed from
       // 0x0000. It is set to 0 by an external reset XRSn
       // This puts us in 1/4
       if (SysCtrlRegs.PLLSTS.bit.DIVSEL != 0)
       {
           EALLOW;
           SysCtrlRegs.PLLSTS.bit.DIVSEL = 0;
           EDIS;
       }
    
       // Change the PLLCR
       if (SysCtrlRegs.PLLCR.bit.DIV != val)
       {
    
          EALLOW;
          // Before setting PLLCR turn off missing clock detect logic
          SysCtrlRegs.PLLSTS.bit.MCLKOFF = 1;
          SysCtrlRegs.PLLCR.bit.DIV = val;
          EDIS;
    
          // Optional: Wait for PLL to lock.
          // During this time the CPU will switch to OSCCLK/2 until
          // the PLL is stable.  Once the PLL is stable the CPU will
          // switch to the new PLL value.
          //
          // This time-to-lock is monitored by a PLL lock counter.
          //
          // Code is not required to sit and wait for the PLL to lock.
          // However, if the code does anything that is timing critical,
          // and requires the correct clock be locked, then it is best to
          // wait until this switching has completed.
    
          // Wait for the PLL lock bit to be set.
          // The watchdog should be disabled before this loop, or fed within
          // the loop via ServiceDog().
    
    	  // Uncomment to disable the watchdog
          WDogDisable();
    
    	  while(SysCtrlRegs.PLLSTS.bit.PLLLOCKS != 1) {}
    
          EALLOW;
          SysCtrlRegs.PLLSTS.bit.MCLKOFF = 0;
    	  EDIS;
    	  }
    
    	  //divide down SysClk by 2 to increase stability
    	  EALLOW;
          SysCtrlRegs.PLLSTS.bit.DIVSEL = 2;
          EDIS;
    }
    
    
    // This function initializes the PIE control registers to a known state.
    //
    void PieCntlInit(void)
    {
        // Disable Interrupts at the CPU level:
        DINT;
    
        // Disable the PIE
        PieCtrlRegs.PIECTRL.bit.ENPIE = 0;
    
    	// Clear all PIEIER registers:
    	PieCtrlRegs.PIEIER1.all = 0;
    	PieCtrlRegs.PIEIER2.all = 0;
    	PieCtrlRegs.PIEIER3.all = 0;
    	PieCtrlRegs.PIEIER4.all = 0;
    	PieCtrlRegs.PIEIER5.all = 0;
    	PieCtrlRegs.PIEIER6.all = 0;
    	PieCtrlRegs.PIEIER7.all = 0;
    	PieCtrlRegs.PIEIER8.all = 0;
    	PieCtrlRegs.PIEIER9.all = 0;
    	PieCtrlRegs.PIEIER10.all = 0;
    	PieCtrlRegs.PIEIER11.all = 0;
    	PieCtrlRegs.PIEIER12.all = 0;
    
    	// Clear all PIEIFR registers:
    	PieCtrlRegs.PIEIFR1.all = 0;
    	PieCtrlRegs.PIEIFR2.all = 0;
    	PieCtrlRegs.PIEIFR3.all = 0;
    	PieCtrlRegs.PIEIFR4.all = 0;
    	PieCtrlRegs.PIEIFR5.all = 0;
    	PieCtrlRegs.PIEIFR6.all = 0;
    	PieCtrlRegs.PIEIFR7.all = 0;
    	PieCtrlRegs.PIEIFR8.all = 0;
    	PieCtrlRegs.PIEIFR9.all = 0;
    	PieCtrlRegs.PIEIFR10.all = 0;
    	PieCtrlRegs.PIEIFR11.all = 0;
    	PieCtrlRegs.PIEIFR12.all = 0;
    }	
    
    
    /*void PieVectTableInit(void)
    {
    	int16 i;
       	PINT *Dest = &PieVectTable.TINT1;
    
       	EALLOW;
       	for(i=0; i < 115; i++) 
        *Dest++ = &ISR_ILLEGAL;
       	EDIS;
     
       	// Enable the PIE Vector Table
       	PieCtrlRegs.PIECTRL.bit.ENPIE = 1; 	
    }*/
    
    interrupt void ISR_ILLEGAL(void)   // Illegal operation TRAP
    {
      // Insert ISR Code here
    
      // Next two lines for debug only to halt the processor here
      // Remove after inserting ISR Code
      asm("          ESTOP0");
      for(;;);
    
    }
    
    // This function initializes the Flash Control registers
    
    //                   CAUTION
    // This function MUST be executed out of RAM. Executing it
    // out of OTP/Flash will yield unpredictable results
    
    void InitFlash(void)
    {
       EALLOW;
       //Enable Flash Pipeline mode to improve performance
       //of code executed from Flash.
       FlashRegs.FOPT.bit.ENPIPE = 1;
    
       //                CAUTION
       //Minimum waitstates required for the flash operating
       //at a given CPU rate must be characterized by TI.
       //Refer to the datasheet for the latest information.
    
       //Set the Paged Waitstate for the Flash
       FlashRegs.FBANKWAIT.bit.PAGEWAIT = 3;
    
       //Set the Random Waitstate for the Flash
       FlashRegs.FBANKWAIT.bit.RANDWAIT = 3;
    
       //Set the Waitstate for the OTP
       FlashRegs.FOTPWAIT.bit.OTPWAIT = 5;
    
       //                CAUTION
       //ONLY THE DEFAULT VALUE FOR THESE 2 REGISTERS SHOULD BE USED
       FlashRegs.FSTDBYWAIT.bit.STDBYWAIT = 0x01FF;
       FlashRegs.FACTIVEWAIT.bit.ACTIVEWAIT = 0x01FF;
       EDIS;
    
       //Force a pipeline flush to ensure that the write to
       //the last register configured occurs before returning.
    
       asm(" RPT #7 || NOP");
    }
    
    
    // This function will copy the specified memory contents from
    // one location to another. 
    // 
    //	Uint16 *SourceAddr        Pointer to the first word to be moved
    //                          SourceAddr < SourceEndAddr
    //	Uint16* SourceEndAddr     Pointer to the last word to be moved
    //	Uint16* DestAddr          Pointer to the first destination word
    //
    // No checks are made for invalid memory locations or that the
    // end address is > then the first start address.
    
    void MemCopy(Uint16 *SourceAddr, Uint16* SourceEndAddr, Uint16* DestAddr)
    {
        while(SourceAddr < SourceEndAddr)
        {
           *DestAddr++ = *SourceAddr++;
        }
        return;
    }
    	
    //===========================================================================
    // End of file.
    //===========================================================================
    
    
    

    and sci_echoback's  F2806x_SysCtrl

    //###########################################################################
    //
    // FILE:   F2806x_SysCtrl.c
    //
    // TITLE:  F2806x Device System Control Initialization & Support Functions.
    //
    // DESCRIPTION:
    //
    //         Example initialization of system resources.
    //
    //###########################################################################
    // $TI Release: F2806x C/C++ Header Files and Peripheral Examples V151 $
    // $Release Date: February  2, 2016 $
    // $Copyright: Copyright (C) 2011-2016 Texas Instruments Incorporated -
    //             http://www.ti.com/ ALL RIGHTS RESERVED $
    //###########################################################################
    
    #include "F2806x_Device.h"     // Headerfile Include File
    #include "F2806x_Examples.h"   // Examples Include File
    
    // Functions that will be run from RAM need to be assigned to
    // a different section.  This section will then be mapped to a load and
    // run address using the linker cmd file.
    //
    //  *IMPORTANT*
    //  IF RUNNING FROM FLASH, PLEASE COPY OVER THE SECTION "ramfuncs"  FROM FLASH
    //  TO RAM PRIOR TO CALLING InitSysCtrl(). THIS PREVENTS THE MCU FROM THROWING 
    //  AN EXCEPTION WHEN A CALL TO DELAY_US() IS MADE. 
    //
    #pragma CODE_SECTION(InitFlash, "ramfuncs");
    
    //---------------------------------------------------------------------------
    // InitSysCtrl:
    //---------------------------------------------------------------------------
    // This function initializes the System Control registers to a known state.
    // - Disables the watchdog
    // - Set the PLLCR for proper SYSCLKOUT frequency
    // - Set the pre-scaler for the high and low frequency peripheral clocks
    // - Enable the clocks to the peripherals
    
    void InitSysCtrl(void)
    {
    
       // Disable the watchdog
       DisableDog();
    
       // *IMPORTANT*
       // The Device_cal function, which copies the ADC & oscillator calibration values
       // from TI reserved OTP into the appropriate trim registers, occurs automatically
       // in the Boot ROM. If the boot ROM code is bypassed during the debug process, the
       // following function MUST be called for the ADC and oscillators to function according
       // to specification. The clocks to the ADC MUST be enabled before calling this
       // function.
       // See the device data manual and/or the ADC Reference
       // Manual for more information.
    
       EALLOW;
       SysCtrlRegs.PCLKCR0.bit.ADCENCLK = 1; // Enable ADC peripheral clock
       (*Device_cal)();
       SysCtrlRegs.PCLKCR0.bit.ADCENCLK = 0; // Return ADC clock to original state
       EDIS;
    
       // Select Internal Oscillator 1 as Clock Source (default), and turn off all unused clocks to
       // conserve power.
       IntOsc1Sel();
    
       // Initialize the PLL control: PLLCR and CLKINDIV
       // DSP28_PLLCR and DSP28_CLKINDIV are defined in F2806x_Examples.h
       InitPll(DSP28_PLLCR,DSP28_DIVSEL);
       
       // Initialize the peripheral clocks
       InitPeripheralClocks();
    }
    
    
    //---------------------------------------------------------------------------
    // Example: ServiceDog:
    //---------------------------------------------------------------------------
    // This function resets the watchdog timer.
    // Enable this function for using ServiceDog in the application
    
    void ServiceDog(void)
    {
        EALLOW;
        SysCtrlRegs.WDKEY = 0x0055;
        SysCtrlRegs.WDKEY = 0x00AA;
        EDIS;
    }
    
    //---------------------------------------------------------------------------
    // Example: DisableDog:
    //---------------------------------------------------------------------------
    // This function disables the watchdog timer.
    
    void DisableDog(void)
    {
        EALLOW;
        SysCtrlRegs.WDCR= 0x0068;
        EDIS;
    }
    
    //---------------------------------------------------------------------------
    // Example: InitPll:
    //---------------------------------------------------------------------------
    // This function initializes the PLLCR register.
    
    void InitPll(Uint16 val, Uint16 divsel)
    {
       volatile Uint16 iVol;
    
       // Make sure the PLL is not running in limp mode
       if (SysCtrlRegs.PLLSTS.bit.MCLKSTS != 0)
       {
          EALLOW;
          // OSCCLKSRC1 failure detected. PLL running in limp mode.
          // Re-enable missing clock logic.
          SysCtrlRegs.PLLSTS.bit.MCLKCLR = 1;
          EDIS;
          // Replace this line with a call to an appropriate
          // SystemShutdown(); function.
         __asm("        ESTOP0");     // Uncomment for debugging purposes
       }
    
       // DIVSEL MUST be 0 before PLLCR can be changed from
       // 0x0000. It is set to 0 by an external reset XRSn
       // This puts us in 1/4
       if (SysCtrlRegs.PLLSTS.bit.DIVSEL != 0)
       {
           EALLOW;
           SysCtrlRegs.PLLSTS.bit.DIVSEL = 0;
           EDIS;
       }
    
       // Change the PLLCR
       if (SysCtrlRegs.PLLCR.bit.DIV != val)
       {
    
          EALLOW;
          // Before setting PLLCR turn off missing clock detect logic
          SysCtrlRegs.PLLSTS.bit.MCLKOFF = 1;
          SysCtrlRegs.PLLCR.bit.DIV = val;
          EDIS;
    
          // Optional: Wait for PLL to lock.
          // During this time the CPU will switch to OSCCLK/2 until
          // the PLL is stable.  Once the PLL is stable the CPU will
          // switch to the new PLL value.
          //
          // This time-to-lock is monitored by a PLL lock counter.
          //
          // Code is not required to sit and wait for the PLL to lock.
          // However, if the code does anything that is timing critical,
          // and requires the correct clock be locked, then it is best to
          // wait until this switching has completed.
    
          // Wait for the PLL lock bit to be set.
    
          // The watchdog should be disabled before this loop, or fed within
          // the loop via ServiceDog().
    
          // Uncomment to disable the watchdog
          DisableDog();
    
          while(SysCtrlRegs.PLLSTS.bit.PLLLOCKS != 1)
          {
              // Uncomment to service the watchdog
              // ServiceDog();
          }
    
          EALLOW;
          SysCtrlRegs.PLLSTS.bit.MCLKOFF = 0;
          EDIS;
        }
    
        // If switching to 1/2
        if((divsel == 1)||(divsel == 2))
        {
            EALLOW;
            SysCtrlRegs.PLLSTS.bit.DIVSEL = divsel;
            EDIS;
        }
    
        // If switching to 1/1
        // * First go to 1/2 and let the power settle
        //   The time required will depend on the system, this is only an example
        // * Then switch to 1/1
        if(divsel == 3)
        {
            EALLOW;
            SysCtrlRegs.PLLSTS.bit.DIVSEL = 2;
            DELAY_US(50L);
            SysCtrlRegs.PLLSTS.bit.DIVSEL = 3;
            EDIS;
        }
    }
    
    //---------------------------------------------------------------------------
    // Example: InitPll2:
    //---------------------------------------------------------------------------
    // This function initializes the PLL2 registers.
    
    void InitPll2(Uint16 clksrc, Uint16 pllmult, Uint16 clkdiv)
    {
          EALLOW;
          
          // Check if SYSCLK2DIV2DIS is in /2 mode
          if(DevEmuRegs.DEVICECNF.bit.SYSCLK2DIV2DIS != 0)
          {
          	DevEmuRegs.DEVICECNF.bit.SYSCLK2DIV2DIS = 0;
          }
          
          // Enable PLL2
          SysCtrlRegs.PLL2CTL.bit.PLL2EN = 1;
          // Select clock source for PLL2
          SysCtrlRegs.PLL2CTL.bit.PLL2CLKSRCSEL = clksrc;
          // Set PLL2 Multiplier
          SysCtrlRegs.PLL2MULT.bit.PLL2MULT = pllmult;
          
          // Wait for PLL to lock.
          // Uncomment to disable the watchdog
    	  DisableDog();
          while(SysCtrlRegs.PLL2STS.bit.PLL2LOCKS!= 1)
          {
          	// Uncomment to service the watchdog
            // ServiceDog();
          }
                
          // Set System Clock 2 divider
          DevEmuRegs.DEVICECNF.bit.SYSCLK2DIV2DIS = clkdiv;
          EDIS;
    }
    
    //--------------------------------------------------------------------------
    // Example: InitPeripheralClocks:
    //---------------------------------------------------------------------------
    // This function initializes the clocks to the peripheral modules.
    // First the high and low clock prescalers are set
    // Second the clocks are enabled to each peripheral.
    // To reduce power, leave clocks to unused peripherals disabled
    //
    // Note: If a peripherals clock is not enabled then you cannot
    // read or write to the registers for that peripheral
    
    void InitPeripheralClocks(void)
    {
       EALLOW;
    
    // LOSPCP prescale register settings, normally it will be set to default values
    
    // GpioCtrlRegs.GPAMUX2.bit.GPIO18 = 3;  // GPIO18 = XCLKOUT
       SysCtrlRegs.LOSPCP.all = 0x0002;
    
    // XCLKOUT to SYSCLKOUT ratio.  By default XCLKOUT = 1/4 SYSCLKOUT
       SysCtrlRegs.XCLK.bit.XCLKOUTDIV=2;
    
    // Peripheral clock enables set for the selected peripherals.
    // If you are not using a peripheral leave the clock off
    // to save on power.
    //
    // Note: not all peripherals are available on all F2806x derivates.
    // Refer to the datasheet for your particular device.
    //
    // This function is not written to be an example of efficient code.
    
       SysCtrlRegs.PCLKCR1.bit.EPWM1ENCLK = 1;    // ePWM1
       SysCtrlRegs.PCLKCR1.bit.EPWM2ENCLK = 1;    // ePWM2
       SysCtrlRegs.PCLKCR1.bit.EPWM3ENCLK = 1;    // ePWM3
       SysCtrlRegs.PCLKCR1.bit.EPWM4ENCLK = 1;    // ePWM4
       SysCtrlRegs.PCLKCR1.bit.EPWM5ENCLK = 1;    // ePWM5
       SysCtrlRegs.PCLKCR1.bit.EPWM6ENCLK = 1;    // ePWM6
       SysCtrlRegs.PCLKCR1.bit.EPWM7ENCLK = 1;    // ePWM7
       SysCtrlRegs.PCLKCR1.bit.EPWM8ENCLK = 1;    // ePWM8
    
       SysCtrlRegs.PCLKCR0.bit.HRPWMENCLK = 1;    // HRPWM
       SysCtrlRegs.PCLKCR0.bit.TBCLKSYNC = 1;     // Enable TBCLK within the ePWM
    
       SysCtrlRegs.PCLKCR1.bit.EQEP1ENCLK = 1;    // eQEP1
       SysCtrlRegs.PCLKCR1.bit.EQEP2ENCLK = 1;    // eQEP2
    
       SysCtrlRegs.PCLKCR1.bit.ECAP1ENCLK = 1;    // eCAP1
       SysCtrlRegs.PCLKCR1.bit.ECAP2ENCLK = 1;    // eCAP2
       SysCtrlRegs.PCLKCR1.bit.ECAP3ENCLK = 1;    // eCAP3
    
       SysCtrlRegs.PCLKCR2.bit.HRCAP1ENCLK = 1;	  // HRCAP1
       SysCtrlRegs.PCLKCR2.bit.HRCAP2ENCLK = 1;	  // HRCAP2
       SysCtrlRegs.PCLKCR2.bit.HRCAP3ENCLK = 1;	  // HRCAP3
       SysCtrlRegs.PCLKCR2.bit.HRCAP4ENCLK = 1;   // HRCAP4
    
       SysCtrlRegs.PCLKCR0.bit.ADCENCLK = 1;      // ADC
       SysCtrlRegs.PCLKCR3.bit.COMP1ENCLK = 1;    // COMP1
       SysCtrlRegs.PCLKCR3.bit.COMP2ENCLK = 1;    // COMP2
       SysCtrlRegs.PCLKCR3.bit.COMP3ENCLK = 1;    // COMP3
    
       SysCtrlRegs.PCLKCR3.bit.CPUTIMER0ENCLK = 1; // CPU Timer 0
       SysCtrlRegs.PCLKCR3.bit.CPUTIMER1ENCLK = 1; // CPU Timer 1
       SysCtrlRegs.PCLKCR3.bit.CPUTIMER2ENCLK = 1; // CPU Timer 2
    
       SysCtrlRegs.PCLKCR3.bit.DMAENCLK = 1;      // DMA
    
       SysCtrlRegs.PCLKCR3.bit.CLA1ENCLK = 1;     // CLA1
    
       SysCtrlRegs.PCLKCR3.bit.USB0ENCLK = 1;	  // USB0
    
       SysCtrlRegs.PCLKCR0.bit.I2CAENCLK = 1;     // I2C-A
       SysCtrlRegs.PCLKCR0.bit.SPIAENCLK = 1;     // SPI-A
       SysCtrlRegs.PCLKCR0.bit.SPIBENCLK = 1;     // SPI-B
       SysCtrlRegs.PCLKCR0.bit.SCIAENCLK = 1;     // SCI-A
       SysCtrlRegs.PCLKCR0.bit.SCIBENCLK = 1;     // SCI-B
       SysCtrlRegs.PCLKCR0.bit.MCBSPAENCLK = 1;   // McBSP-A
       SysCtrlRegs.PCLKCR0.bit.ECANAENCLK=1;      // eCAN-A
    
       SysCtrlRegs.PCLKCR0.bit.TBCLKSYNC = 1;     // Enable TBCLK within the ePWM
    
       //--------------------------------------------------------------------------------------
               //  GPIO-19 - PIN FUNCTION = --Spare--
                   GpioCtrlRegs.GPAMUX2.bit.GPIO19 = 0;    // 0=GPIO, 1=SPISTEA, 2=SCIRXDB, 3=ECAP1
                   GpioCtrlRegs.GPADIR.bit.GPIO19 = 0;     // 1=OUTput,  0=INput
               //  GpioDataRegs.GPACLEAR.bit.GPIO19 = 1;   // uncomment if --> Set Low initially
               //  GpioDataRegs.GPASET.bit.GPIO19 = 1;     // uncomment if --> Set High initially
               //  GpioCtrlRegs.GPAPUD.bit.GPIO19 = 1;
    
    
       EDIS;
    }
    
    //---------------------------------------------------------------------------
    // Example: CsmUnlock:
    //---------------------------------------------------------------------------
    // This function unlocks the CSM. User must replace 0xFFFF's with current
    // password for the DSP. Returns 1 if unlock is successful.
    
    #define STATUS_FAIL          0
    #define STATUS_SUCCESS       1
    
    Uint16 CsmUnlock()
    {
        volatile Uint16 temp;
    
        // Load the key registers with the current password. The 0xFFFF's are dummy
        // passwords.  User should replace them with the correct password for the DSP.
    
        EALLOW;
        CsmRegs.KEY0 = 0xFFFF;
        CsmRegs.KEY1 = 0xFFFF;
        CsmRegs.KEY2 = 0xFFFF;
        CsmRegs.KEY3 = 0xFFFF;
        CsmRegs.KEY4 = 0xFFFF;
        CsmRegs.KEY5 = 0xFFFF;
        CsmRegs.KEY6 = 0xFFFF;
        CsmRegs.KEY7 = 0xFFFF;
        EDIS;
    
        // Perform a dummy read of the password locations
        // if they match the key values, the CSM will unlock
    
        temp = CsmPwl.PSWD0;
        temp = CsmPwl.PSWD1;
        temp = CsmPwl.PSWD2;
        temp = CsmPwl.PSWD3;
        temp = CsmPwl.PSWD4;
        temp = CsmPwl.PSWD5;
        temp = CsmPwl.PSWD6;
        temp = CsmPwl.PSWD7;
    
        // If the CSM unlocked, return succes, otherwise return
        // failure.
        if (CsmRegs.CSMSCR.bit.SECURE == 0) return STATUS_SUCCESS;
        else return STATUS_FAIL;
    
    }
    
    //---------------------------------------------------------------------------
    // Example: IntOsc1Sel:
    //---------------------------------------------------------------------------
    // This function switches to Internal Oscillator 1 and turns off all other clock
    // sources to minimize power consumption
    
    void IntOsc1Sel (void) {
        EALLOW;
        SysCtrlRegs.CLKCTL.bit.INTOSC1OFF = 0;
        SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL=0;  // Clk Src = INTOSC1
        SysCtrlRegs.CLKCTL.bit.XCLKINOFF=1;     // Turn off XCLKIN
        SysCtrlRegs.CLKCTL.bit.XTALOSCOFF=1;    // Turn off XTALOSC
        SysCtrlRegs.CLKCTL.bit.INTOSC2OFF=1;    // Turn off INTOSC2
        EDIS;
    }
    
    //---------------------------------------------------------------------------
    // Example: IntOsc2Sel:
    //---------------------------------------------------------------------------
    // This function switches to Internal oscillator 2 from External Oscillator
    // and turns off all other clock sources to minimize power consumption
    // NOTE: If there is no external clock connection, when switching from
    //       INTOSC1 to INTOSC2, EXTOSC and XLCKIN must be turned OFF prior
    //       to switching to internal oscillator 1
    
    void IntOsc2Sel (void) {
        EALLOW;
        SysCtrlRegs.CLKCTL.bit.INTOSC2OFF = 0;     // Turn on INTOSC2
        SysCtrlRegs.CLKCTL.bit.OSCCLKSRC2SEL = 1;  // Switch to INTOSC2
        SysCtrlRegs.CLKCTL.bit.XCLKINOFF = 1;      // Turn off XCLKIN
        SysCtrlRegs.CLKCTL.bit.XTALOSCOFF = 1;     // Turn off XTALOSC
        SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL = 1;   // Switch to Internal Oscillator 2
        SysCtrlRegs.CLKCTL.bit.WDCLKSRCSEL = 0;    // Clock Watchdog off of INTOSC1 always
        SysCtrlRegs.CLKCTL.bit.INTOSC1OFF = 0;     // Leave INTOSC1 on
        EDIS;
    }
    
    //---------------------------------------------------------------------------
    // Example: XtalOscSel:
    //---------------------------------------------------------------------------
    // This function switches to External CRYSTAL oscillator and turns off all other clock
    // sources to minimize power consumption. This option may not be available on all
    // device packages
    
    void XtalOscSel (void)  {
         EALLOW;
         SysCtrlRegs.CLKCTL.bit.XTALOSCOFF = 0;     // Turn on XTALOSC
         DELAY_US(1000);                            // Wait for 1ms while XTAL starts up
         SysCtrlRegs.CLKCTL.bit.XCLKINOFF = 1;      // Turn off XCLKIN
         SysCtrlRegs.CLKCTL.bit.OSCCLKSRC2SEL = 0;  // Switch to external clock
         SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL = 1;   // Switch from INTOSC1 to INTOSC2/ext clk
         SysCtrlRegs.CLKCTL.bit.WDCLKSRCSEL = 0;    // Clock Watchdog off of INTOSC1 always
         SysCtrlRegs.CLKCTL.bit.INTOSC2OFF = 1;     // Turn off INTOSC2
         SysCtrlRegs.CLKCTL.bit.INTOSC1OFF = 0;     // Leave INTOSC1 on
         EDIS;
    }
    
    
    //---------------------------------------------------------------------------
    // Example: ExtOscSel:
    //---------------------------------------------------------------------------
    // This function switches to External oscillator and turns off all other clock
    // sources to minimize power consumption.
    
    void ExtOscSel (void)  {
         EALLOW;
         SysCtrlRegs.XCLK.bit.XCLKINSEL = 1;       // 1-GPIO19 = XCLKIN, 0-GPIO38 = XCLKIN
         SysCtrlRegs.CLKCTL.bit.XTALOSCOFF = 1;    // Turn on XTALOSC
         SysCtrlRegs.CLKCTL.bit.XCLKINOFF = 0;     // Turn on XCLKIN
         SysCtrlRegs.CLKCTL.bit.OSCCLKSRC2SEL = 0; // Switch to external clock
         SysCtrlRegs.CLKCTL.bit.OSCCLKSRCSEL = 1;  // Switch from INTOSC1 to INTOSC2/ext clk
         SysCtrlRegs.CLKCTL.bit.WDCLKSRCSEL = 0;   // Clock Watchdog off of INTOSC1 always
         SysCtrlRegs.CLKCTL.bit.INTOSC2OFF = 1;    // Turn off INTOSC2
         SysCtrlRegs.CLKCTL.bit.INTOSC1OFF = 0;     // Leave INTOSC1 on
         EDIS;
    }
    
    
    
    //===========================================================================
    // End of file.
    //===========================================================================
    

    If I deactivate (//) DeviceInit(); from main, sci_echoback works perfectly. Vice versa for symmetric pwm when I deactivate InitSysCtrl();

    In both files, there are these codes below. 

    PLLset( 0x10 ); // choose from options above
    
    
        // Initialise interrupt controller and Vector Table
        // to defaults for now. Application ISR mapping done later.
            PieCntlInit();
            PieVectTableInit();
             EALLOW; // below registers are "protected", allow access.
    
        // LOW SPEED CLOCKS prescale register settings
           SysCtrlRegs.LOSPCP.all = 0x0002;     // Sysclk / 4 (20 MHz)
           SysCtrlRegs.XCLK.bit.XCLKOUTDIV=2;
    

    Because of these parts, pwm and communication does not work at the same time. Today, I will merge these 2 files and understand if both feature will work at the same time or will I need to create communication and wortking modes.

    Of course, my explanations may be a bit weak because I am still a newbie. I have not read much about what subroutine is for what. I am learning by doing. But these were what happened. :)