FT810 DISCO-429ZI

Dependencies:   BSP_DISCO_F429ZI EEPROM_DISCO_F429ZI FT810_DISCO-F429ZI GYRO_DISCO_F429ZI KEYPAD_DISCO_F429ZI LCD_DISCO_F429ZI SDRAM_DISCO_F429ZI TS_DISCO_F429ZI mbed

port.h

Committer:
mozillain
Date:
2018-01-10
Revision:
2:d3348c22b0d3
Parent:
1:2e00250c31c8

File content as of revision 2:d3348c22b0d3:

#ifndef _PORT_H
#define _PORT_H
 
#include <assert.h>
#include <inttypes.h>
 
#define INLINE                      //inline
#define PR_BEGIN_EXTERN_C           //extern "C" {
#define PR_END_EXTERN_C             //}
 
#define ENTER_CRITICAL_SECTION( )   
#define EXIT_CRITICAL_SECTION( )    
 
typedef uint8_t BOOL;
 
typedef unsigned char UCHAR;
typedef char CHAR;
 
typedef uint16_t USHORT;
typedef int16_t SHORT;
 
typedef uint32_t ULONG;
typedef int32_t LONG;
 
#ifndef TRUE
#define TRUE            1
#endif
 
#ifndef FALSE
#define FALSE           0
#endif
 
#endif