You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
665 B
C
44 lines
665 B
C
/*
|
|
* DataTypesDefinitions.h
|
|
*
|
|
* Author: Aleksey Gerasimenko
|
|
* gerasimenko.aleksey.n@gmail.com
|
|
*/
|
|
|
|
|
|
|
|
#include <math.h>
|
|
#include <stdint.h>
|
|
|
|
#include "DSP2833x_Device.h"
|
|
|
|
|
|
#ifndef SYSCTRL_DATATYPESDEFINITIONS_H_
|
|
#define SYSCTRL_DATATYPESDEFINITIONS_H_
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#ifndef DSP28_BYTE_DATA_TYPES
|
|
#define DSP28_BYTE_DATA_TYPES
|
|
typedef signed char int8;
|
|
typedef unsigned char Uint8;
|
|
#endif
|
|
|
|
|
|
#ifndef STD_BYTE_DATA_TYPES
|
|
#define STD_BYTE_DATA_TYPES
|
|
typedef signed char int8_t;
|
|
typedef unsigned char uint8_t;
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* extern "C" */
|
|
|
|
#endif /* SYSCTRL_DATATYPESDEFINITIONS_H_ */
|