Hello,
I just got my Tiva C Series TM4C1294 Connected LaunchPad in yesterday. I tried to build the TI-RTOS tcpEcho example but the build failed. I get the following error,
Description Resource Path Location Type
#35 #error directive: This platform is not supported by TI-RTOS currently. .ccsproject /test line 272, external location: C:\ti\tirtos_tivac_2_00_01_23\packages\ti\drivers\ENV.h C/C++ Problem
I checked the ENV.h file in c:\ti\tirtos_tivac_2_00_01_23\packages\ti\drivers\ENV.h and here are the first several lines of the file,
/** ============================================================================
* @file ENV.h
*
* @brief Environment definitions for different platforms
*
* ============================================================================
*/
#ifndef ti_drivers_ENV__include
#define ti_drivers_ENV__include
#ifdef __cplusplus
extern "C" {
#endif
/* MSP430F5529 and USCI devices */
#if defined(__MSP430F5529__)
#include <msp430.h>
#include <gpio.h>
#include <wdt_a.h>
#include <sfr.h>
#include <ucs.h>
#include <usci_b_i2c.h>
#include <usci_b_spi.h>
#include <usci_a_uart.h>
it looks to me that this file wants to initialize for MSP430F5529 and USCI devices. By the way I created an empty CSS project using the "TI-RTOS for Tiva C --> kernal examples --> TI Target examples --> typical" project. I then checked off in the "Products and Repositories" page the NDK, SYS/BIOS, TI-RTOS for Tiva C and 2.01.23. I then copied the tcpEcho files into this project. Can I get some help getting this to work?
Best Regards,
Steve Mansfield