#if defined(TARGET_IS_BLIZZARD_RA1) || \
defined(TARGET_IS_BLIZZARD_RA3) || \
defined(TARGET_IS_BLIZZARD_RB1) || \
defined(TARGET_IS_SNOWFLAKE_RA0)
#define ROM_IntMasterDisable \
((bool (*)(void))ROM_INTERRUPTTABLE[2])
其中if defined后是什么意思?
#if defined(TARGET_IS_BLIZZARD_RA1) || \
defined(TARGET_IS_BLIZZARD_RA3) || \
defined(TARGET_IS_BLIZZARD_RB1) || \
defined(TARGET_IS_SNOWFLAKE_RA0)
#define ROM_IntMasterDisable \
((bool (*)(void))ROM_INTERRUPTTABLE[2])
其中if defined后是什么意思?
xiancheng,
我们现在COrtex-M4的产品只有123x和129X两个系列,129X是snowflake。
关于TM4C123系列的教程,你可以参考下面的材料链接:
http://processors.wiki.ti.com/index.php/Getting_Started_with_the_TIVA%E2%84%A2_C_Series_TM4C123G_LaunchPad
里面找得到你所需要的。
谢谢