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.
Tool/software: Code Composer Studio
Hello everyone,
I'm trying to configure a SPI connection between the CC3200 and TMS320F28335, as the slave and master respectively. But, when I run the code, nothing happens. I'm trying to send two characters ('A' and 'L' in this case) from the CC3200 to the TMS320F28335, and see if the hex form of these characters will appear in the variable rdata. I feel the problem lies with initializing the SPI registers on both sides, since I don't completely understand all the bit configurations for SPI. I would like the clock polarity and phase to both be set to 0, and transfer 16 bits at a time. The first set of code is from the CC3200 set as a slave and the second set of code is the TMS320F28335 set as the master. Both of these are based off of SPI example code on both boards.
// Standard includes #include <string.h> // Driverlib includes #include "hw_types.h" #include "hw_memmap.h" #include "hw_common_reg.h" #include "hw_ints.h" #include "spi.h" #include "rom.h" #include "rom_map.h" #include "utils.h" #include "prcm.h" #include "uart.h" #include "interrupt.h" // Common interface includes #include "uart_if.h" #include "pinmux.h" #define APPLICATION_VERSION "1.1.1" //***************************************************************************** // // Application Master/Slave mode selector macro // // MASTER_MODE = 1 : Application in master mode // MASTER_MODE = 0 : Application in slave mode // //***************************************************************************** #define MASTER_MODE 0 #define SPI_IF_BIT_RATE 100000 // Controlled by the master (DSP), but pick a bit rate close to DSP just in case. #define TR_BUFF_SIZE 2 //originally 100 (char type is one byte = 8 bits, need 16 bits) #define MASTER_MSG "This is CC3200 SPI Master Application\n\r" #define SLAVE_MSG "This is CC3200 SPI Slave Application\n\r" //***************************************************************************** // GLOBAL VARIABLES -- Start //***************************************************************************** static unsigned char g_ucTxBuff[TR_BUFF_SIZE]; static unsigned char g_ucRxBuff[TR_BUFF_SIZE]; static unsigned char ucTxBuffNdx; static unsigned char ucRxBuffNdx; #if defined(ccs) extern void (* const g_pfnVectors[])(void); #endif #if defined(ewarm) extern uVectorEntry __vector_table; #endif //***************************************************************************** // GLOBAL VARIABLES -- End //***************************************************************************** //***************************************************************************** // //! SPI Slave Interrupt handler //! //! This function is invoked when SPI slave has its receive register full or //! transmit register empty. //! //! \return None. // //***************************************************************************** static void SlaveIntHandler() { unsigned long ulRecvData; unsigned long ulStatus; ulStatus = MAP_SPIIntStatus(GSPI_BASE,true); MAP_SPIIntClear(GSPI_BASE,SPI_INT_RX_FULL|SPI_INT_TX_EMPTY); if(ulStatus & SPI_INT_TX_EMPTY) { MAP_SPIDataPut(GSPI_BASE,g_ucTxBuff[ucTxBuffNdx%TR_BUFF_SIZE]); ucTxBuffNdx++; } if(ulStatus & SPI_INT_RX_FULL) { MAP_SPIDataGetNonBlocking(GSPI_BASE,&ulRecvData); g_ucTxBuff[ucRxBuffNdx%TR_BUFF_SIZE] = ulRecvData; Report("%c",ulRecvData); ucRxBuffNdx++; } } //***************************************************************************** // //! SPI Master mode main loop //! //! This function configures SPI module as master and enables the channel for //! communication //! //! \return None. // //***************************************************************************** void MasterMain() { unsigned long ulUserData; unsigned long ulDummy; // // Initialize the message // memcpy(g_ucTxBuff,MASTER_MSG,sizeof(MASTER_MSG)); // // Set Tx buffer index // ucTxBuffNdx = 0; ucRxBuffNdx = 0; // // Reset SPI // MAP_SPIReset(GSPI_BASE); // // Configure SPI interface // MAP_SPIConfigSetExpClk(GSPI_BASE,MAP_PRCMPeripheralClockGet(PRCM_GSPI), SPI_IF_BIT_RATE,SPI_MODE_MASTER,SPI_SUB_MODE_0, (SPI_SW_CTRL_CS | SPI_4PIN_MODE | SPI_TURBO_OFF | SPI_CS_ACTIVEHIGH | SPI_WL_8)); // // Enable SPI for communication // MAP_SPIEnable(GSPI_BASE); // // Print mode on uart // Message("Enabled SPI Interface in Master Mode\n\r"); // // User input // Report("Press any key to transmit data...."); // // Read a character from UART terminal // ulUserData = MAP_UARTCharGet(UARTA0_BASE); // // Send the string to slave. Chip Select(CS) needs to be // asserted at start of transfer and deasserted at the end. // MAP_SPITransfer(GSPI_BASE,g_ucTxBuff,g_ucRxBuff,50, SPI_CS_ENABLE|SPI_CS_DISABLE); // // Report to the user // Report("\n\rSend %s",g_ucTxBuff); Report("Received %s",g_ucRxBuff); // // Print a message // Report("\n\rType here (Press enter to exit) :"); // // Initialize variable // ulUserData = 0; // // Enable Chip select // MAP_SPICSEnable(GSPI_BASE); // // Loop until user "Enter Key" is // pressed // while(ulUserData != '\r') { // // Read a character from UART terminal // ulUserData = MAP_UARTCharGet(UARTA0_BASE); // // Echo it back // MAP_UARTCharPut(UARTA0_BASE,ulUserData); // // Push the character over SPI // MAP_SPIDataPut(GSPI_BASE,ulUserData); // // Clean up the receive register into a dummy // variable // MAP_SPIDataGet(GSPI_BASE,&ulDummy); } // // Disable chip select // MAP_SPICSDisable(GSPI_BASE); } //***************************************************************************** // //! SPI Slave mode main loop //! //! This function configures SPI module as slave and enables the channel for //! communication //! //! \return None. // //***************************************************************************** void SlaveMain() { // // Initialize the message // //memcpy(g_ucTxBuff,SLAVE_MSG,sizeof(SLAVE_MSG)); <- Will not be needed (I think) // // Set Tx buffer index // ucTxBuffNdx = 0; ucRxBuffNdx = 0; // // Reset SPI // MAP_SPIReset(GSPI_BASE); // // Configure SPI interface // MAP_SPIConfigSetExpClk(GSPI_BASE,MAP_PRCMPeripheralClockGet(PRCM_GSPI), SPI_IF_BIT_RATE,SPI_MODE_SLAVE,SPI_SUB_MODE_0, (SPI_HW_CTRL_CS | SPI_4PIN_MODE | SPI_TURBO_OFF | SPI_CS_ACTIVEHIGH | SPI_WL_16)); // // Register Interrupt Handler // MAP_SPIIntRegister(GSPI_BASE,SlaveIntHandler); // // Enable Interrupts // MAP_SPIIntEnable(GSPI_BASE,SPI_INT_RX_FULL|SPI_INT_TX_EMPTY); // // Enable SPI for communication // MAP_SPIEnable(GSPI_BASE); // // Print mode on uart // //Message("Enabled SPI Interface in Slave Mode\n\rReceived : "); <- Will not need (I think). //My own written code. g_ucTxBuff[0] = 'A'; g_ucTxBuff[1] = 'L'; MAP_SPITransfer(GSPI_BASE,g_ucRxBuff,g_ucTxBuff,16,SPI_CS_ENABLE|SPI_CS_DISABLE); } //***************************************************************************** // //! Board Initialization & Configuration //! //! \param None //! //! \return None // //***************************************************************************** static void BoardInit(void) { /* In case of TI-RTOS vector table is initialize by OS itself */ #ifndef USE_TIRTOS // // Set vector table base // #if defined(ccs) MAP_IntVTableBaseSet((unsigned long)&g_pfnVectors[0]); #endif #if defined(ewarm) MAP_IntVTableBaseSet((unsigned long)&__vector_table); #endif #endif // // Enable Processor // MAP_IntMasterEnable(); MAP_IntEnable(FAULT_SYSTICK); PRCMCC3200MCUInit(); } //***************************************************************************** // //! Main function for spi demo application //! //! \param none //! //! \return None. // //***************************************************************************** void main() { // // Initialize Board configurations // BoardInit(); // // Muxing UART and SPI lines. // PinMuxConfig(); // // Enable the SPI module clock // MAP_PRCMPeripheralClkEnable(PRCM_GSPI,PRCM_RUN_MODE_CLK); // // Initialising the Terminal. // //InitTerm(); <- Will not be needed (I think) // // Clearing the Terminal. // //ClearTerm(); <- Will not be needed (I think) // // Display the Banner // /*Message("\n\n\n\r"); Message("\t\t ********************************************\n\r"); Message("\t\t CC3200 SPI Demo Application \n\r"); Message("\t\t ********************************************\n\r"); Message("\n\n\n\r");*/ // // Reset the peripheral // MAP_PRCMPeripheralReset(PRCM_GSPI); #if MASTER_MODE MasterMain(); #else SlaveMain(); #endif while(1) { } }
END OF CC3200 CODE/START OF TMS320F28335 CODE
#include "DSP28x_Project.h" // Device Headerfile and Examples Include File // Prototype statements for functions found within this file. // __interrupt void ISRTimer2(void); void delay_loop(void); void spi_xmit(Uint16 a); void spi_fifo_init(void); void spi_init(void); void error(void); void main(void) { //Uint16 sdata; // send data Uint16 rdata; // received data // Step 1. Initialize System Control: // PLL, WatchDog, enable Peripheral Clocks // This example function is found in the DSP2833x_SysCtrl.c file. InitSysCtrl(); // Step 2. Initialize GPIO: // This example function is found in the DSP2833x_Gpio.c file and // illustrates how to set the GPIO to it's default state. // InitGpio(); // Skipped for this example // Setup only the GP I/O only for SPI-A functionality // This function is found in DSP2833x_Spi.c InitSpiaGpio(); // Step 3. Clear all interrupts and initialize PIE vector table: // Disable CPU interrupts DINT; // Initialize PIE control registers to their default state. // The default state is all PIE interrupts disabled and flags // are cleared. // This function is found in the DSP2833x_PieCtrl.c file. InitPieCtrl(); // Disable CPU interrupts and clear all CPU interrupt flags: IER = 0x0000; IFR = 0x0000; // Initialize the PIE vector table with pointers to the shell Interrupt // Service Routines (ISR). // This will populate the entire table, even if the interrupt // is not used in this example. This is useful for debug purposes. // The shell ISR routines are found in DSP2833x_DefaultIsr.c. // This function is found in DSP2833x_PieVect.c. InitPieVectTable(); // Step 4. Initialize all the Device Peripherals: // This function is found in DSP2833x_InitPeripherals.c // InitPeripherals(); // Not required for this example spi_fifo_init(); // Initialize the Spi FIFO spi_init(); // init SPI // Step 5. User specific code: // Interrupts are not used in this example. //sdata = 0x0001; for(;;) { // Transmit data //spi_xmit(sdata); // Wait until data is received while(SpiaRegs.SPIFFRX.bit.RXFFST !=1) { } // Check against sent data rdata = SpiaRegs.SPIRXBUF; //if(rdata != sdata) error(); //sdata++; } } // Step 7. Insert all local Interrupt Service Routines (ISRs) and functions here: void delay_loop() { long i; for (i = 0; i < 1000000; i++) {} } void error(void) { __asm(" ESTOP0"); // Test failed!! Stop! for (;;); } void spi_init() { SpiaRegs.SPICCR.all =0x000F; // Reset on, rising edge, 16-bit char bits SpiaRegs.SPICTL.all =0x0004; // Enable master mode, normal phase, (failed on both 0x0004 and 0x0006) // enable talk, and SPI int disabled. SpiaRegs.SPIBRR =0x007F; SpiaRegs.SPICCR.all =0x008F; // Relinquish SPI from Reset SpiaRegs.SPIPRI.bit.FREE = 1; // Set so breakpoints don't disturb xmission } void spi_xmit(Uint16 a) { SpiaRegs.SPITXBUF=a; } void spi_fifo_init() { // Initialize SPI FIFO registers SpiaRegs.SPIFFTX.all=0xE040; SpiaRegs.SPIFFRX.all=0x204f; SpiaRegs.SPIFFCT.all=0x0; }