谁能告诉我这是为什么?明明“chipNumb”值是0x02,而且CHIP_NUMB是常量0x02,还返回FALSE?
-
-
1.JPG
(6.25 KB)
-
-
2.JPG
(39.49 KB)
#define CELL_TOTAL 24
#if (CELL_TOTAL % 12 == 0)
#define CHIP_NUMB (CELL_TOTAL / 12)
#else
#define CHIP_NUMB (CELL_TOTAL / 12 + 1)
#endif
uint8_t chipNumb = 0;
求解啊!
chipNumb是R7,我实在想不通跟R0有什么关系