Anim

Dependencies:   BSP_DISCO_F429ZI EEPROM_DISCO_F429ZI FT810 GYRO_DISCO_F429ZI KEYPAD_DISCO_F429ZI LCD_DISCO_F429ZI PinDetect SDRAM_DISCO_F429ZI TS_DISCO_F429ZI mbed

Committer:
mozillain
Date:
Wed Jan 24 13:10:37 2018 +0000
Revision:
1:2ceb29686290
Anim

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mozillain 1:2ceb29686290 1 #ifndef _PORT_H
mozillain 1:2ceb29686290 2 #define _PORT_H
mozillain 1:2ceb29686290 3
mozillain 1:2ceb29686290 4 #include <assert.h>
mozillain 1:2ceb29686290 5 #include <inttypes.h>
mozillain 1:2ceb29686290 6
mozillain 1:2ceb29686290 7 #define INLINE //inline
mozillain 1:2ceb29686290 8 #define PR_BEGIN_EXTERN_C //extern "C" {
mozillain 1:2ceb29686290 9 #define PR_END_EXTERN_C //}
mozillain 1:2ceb29686290 10
mozillain 1:2ceb29686290 11 #define ENTER_CRITICAL_SECTION( )
mozillain 1:2ceb29686290 12 #define EXIT_CRITICAL_SECTION( )
mozillain 1:2ceb29686290 13
mozillain 1:2ceb29686290 14 typedef uint8_t BOOL;
mozillain 1:2ceb29686290 15
mozillain 1:2ceb29686290 16 typedef unsigned char UCHAR;
mozillain 1:2ceb29686290 17 typedef char CHAR;
mozillain 1:2ceb29686290 18
mozillain 1:2ceb29686290 19 typedef uint16_t USHORT;
mozillain 1:2ceb29686290 20 typedef int16_t SHORT;
mozillain 1:2ceb29686290 21
mozillain 1:2ceb29686290 22 typedef uint32_t ULONG;
mozillain 1:2ceb29686290 23 typedef int32_t LONG;
mozillain 1:2ceb29686290 24
mozillain 1:2ceb29686290 25 #ifndef TRUE
mozillain 1:2ceb29686290 26 #define TRUE 1
mozillain 1:2ceb29686290 27 #endif
mozillain 1:2ceb29686290 28
mozillain 1:2ceb29686290 29 #ifndef FALSE
mozillain 1:2ceb29686290 30 #define FALSE 0
mozillain 1:2ceb29686290 31 #endif
mozillain 1:2ceb29686290 32
mozillain 1:2ceb29686290 33 #endif