Rename macros.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 2 Sep 2010 09:16:47 +0000 (09:16 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 2 Sep 2010 09:16:47 +0000 (09:16 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4222 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/arm/drv/flash_lpc2.c
bertos/struct/bitarray.h
bertos/struct/bitarray_test.c

index a9ffcc67e73828281cccbbf4b1cdced7917377e9..ffcc1b0a33cc894ca16e536e9ff3a8348aa870d6 100644 (file)
@@ -94,7 +94,7 @@ struct FlashHardware
 
 #define FLASH_PAGE_CNT  FLASH_MEM_SIZE / FLASH_PAGE_SIZE_BYTES
 
-ALLOC_BITARRAY(page_dirty, FLASH_PAGE_CNT);
+BITARRAY_ALLOC(page_dirty, FLASH_PAGE_CNT);
 static BitArray lpc2_bitx;
 
 uint8_t erase_group[] = {
index fdd9b86f91b82600a6475cd48aac584778883257..36d1aa2abef552c051f695abd7c2ebe32cb1ec38 100644 (file)
@@ -52,8 +52,8 @@ typedef struct BitArray
        uint8_t *array;
 } BitArray;
 
-#define ALLOC_BITARRAY(name, size)   uint8_t name[DIV_ROUNDUP((size), 8)]
-#define BIT_ARRAY_SIZE(name)         (sizeof((name)) * 8)
+#define BITARRAY_ALLOC(name, size)   uint8_t name[DIV_ROUNDUP((size), 8)]
+#define BITARRAY_SIZE(name)         (sizeof((name)) * 8)
 
 INLINE void bitarray_set(BitArray *bitx, int idx)
 {
index 250977de4c24ce9070d3a3c5180dfe0d701db284..bea6771f01189fc341f3e9394668572b5fe1969c 100644 (file)
@@ -46,8 +46,8 @@
 #define TEST1_LEN   31
 #define TEST2_LEN   17
 
-ALLOC_BITARRAY(test1, TEST1_LEN);
-ALLOC_BITARRAY(test2, TEST2_LEN);
+BITARRAY_ALLOC(test1, TEST1_LEN);
+BITARRAY_ALLOC(test2, TEST2_LEN);
 
 BitArray bitx1;
 BitArray bitx2;