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.

F28027 Piccolo controlSTICK and ISR_ILLEGAL() trap in CCSv5x

Hello,

I'm new to both the C2000 and CCS.  I've modified the "BlinkingLED" example code for the F28027 Piccolo controlSTICK to drive one HRPWM, and sample three ADC channels sequentially triggered from the same ePWM module.  I'm using the Flash build configuration provided, and when I enter debug mode, the processor halts because I'm apparently getting an illegal operation (ISR_ILLEGAL()).

The RAM size of the F28027 is only 6k, so I'm wondering if I'm overrunning the RAM (stack?).  Except that when I don't enable interrupts (IER, EINT, and ERTM commented out), both the HRPWM and the ADC conversions appear to be working.

Am I doing something wrong with the configuration, or am I over-running the RAM?  If it's the latter, how do I use CCS to see this?

The modified code is attached, along with the Flash linker command file provided with the BlinkingLED example.

1643.main.c
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//----------------------------------------------------------------------------------
// FILE: BlinkingLED-Main.C
//
// Description: This program blinks LD2 on the Piccolo controlSTICK at a
// frequency given by the CPU timer period register. Change the
// register/bits CpuTimer0Regs.PRD.all to change the frequency of
// the LED (LD2).
//
// Target: TMS320F2802x or TMS320F2803x families (Piccolo)
//
//----------------------------------------------------------------------------------
// $TI Release:$ V1.1
// $Release Date:$ 26 Oct 2009 - BRL
//----------------------------------------------------------------------------------
//
// PLEASE READ - Useful notes about this Project
// Although this project is made up of several files, the most important ones are:
// "BlinkingLED-Main.c" - this file
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

3580.BlinkingLED-DevInit_F2802x.c
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//============================================================================
//============================================================================
//
// FILE: BlinkingLED-DevInit_F2802x.c
//
// TITLE: Device initialization for F2802x series
//
// Version: 1.0
//
// Date: 22 Oct 08 BRL
//============================================================================
//============================================================================
#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");
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

6557.F28027_FLASH_BlinkingLED.txt
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*==================================================================================*/
/* User specific Linker command file for running from FLASH */
/*==================================================================================*/
/* FILE: F28027_FLASH_BlinkingLED.CMD */
/* */
/* Description: Linker command file for User custom sections targetted to run */
/* from FLASH. */
/* */
/* Target: TMS320F28027 */
/* */
/* Version: 1.1 */
/* */
/*----------------------------------------------------------------------------------*/
/* Copyright Texas Instruments � 2009 */
/*----------------------------------------------------------------------------------*/
/* Revision History: */
/*----------------------------------------------------------------------------------*/
/* Date | Description */
/*----------------------------------------------------------------------------------*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
(change extension to .cmd)

Thanks,

Nathan

  • Solved.  This was a silly configuration issue.  I had originally tried using the default ISR "ADCINT3_ISR", which I must not have initialized properly.  When I switched to my own ISR, I bungled setting the Pie Vector address (main, line ).  I'm now interrupting correctly assigning the address as:

    EALLOW;

    PieVectTable.ADCINT3 = &adc_isr;

    EDIS;