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 doesn't recognize "uint8_t" , "uint16_t" , "uint32_t"



Hi, 

I m working on AM335x, and i m trying to make a new C++ helloworld Project..

My first Problem is that Code Composer doesn't recognize "uint8_t" , "uint16_t" , "uint32_t"  Types..

somewhere in another Sitara example (but not a code comoser project !! ) i found this definitions :

typedef uint8_t u08_t;
typedef uint16_t u16_t;
typedef uint32_t u32_t;
typedef int8_t s08_t;
typedef int16_t s16_t;
typedef int32_t s32_t;

A list of all included Files in the example :

#include <linux/gpio.h>
#include <linux/spi/spi.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/slab.h>
#include <linux/gpio.h>
#include <linux/spi/spi.h>
#include <asm/irq.h>
#include <linux/module.h>
#include <linux/delay.h>
#include <linux/list.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/dcache.h>
#include <linux/file.h>
#include <linux/mount.h>
#include <linux/miscdevice.h>
#include <linux/workqueue.h>
#include <linux/completion.h>
#include <asm/uaccess.h>
#include <linux/semaphore.h>
#include <linux/syscalls.h>

#include <linux/types.h>
#include <linux/time.h>
#include <linux/types.h>
#include <linux/sched.h>
#include <linux/unistd.h>
#include <linux/wait.h>
#include <linux/fs.h>
#include <linux/version.h>
#include <linux/errno.h>
#include <linux/ioctl.h>

So where are u08_t , u16_t , u32_t defined??

My second Poblem is that Code Composer doesn't find all includes marked in red above 

where are they ? i m using Ubuntu 10.04

best regards,

aly