FreeCalypso > hg > tcs211-fcmodem
comparison chipsetsw/layer1/p_include/l1p_macr.h @ 0:509db1a7b7b8
initial import: leo2moko-r1
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Jun 2015 03:24:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:509db1a7b7b8 |
---|---|
1 /************* Revision Controle System Header ************* | |
2 * GSM Layer 1 software | |
3 * | |
4 * | |
5 * Filename l1p_macr.h | |
6 * Copyright 2003 (C) Texas Instruments | |
7 * | |
8 ************* Revision Controle System Header *************/ | |
9 | |
10 #if (OP_L1_STANDALONE == 0) | |
11 // First undefine the macros to avoid compilation warnings | |
12 #undef Min | |
13 #undef Max | |
14 #endif | |
15 | |
16 // Max(x,y) definition | |
17 #define Max(x,y) ( (x) > (y) ? (x) : (y) ) | |
18 | |
19 // Min(x,y) definition | |
20 #define Min(x,y) ( (x) < (y) ? (x) : (y) ) |