在我要测试的模块中,有一个类似的功能:
foo.c
static interrupt void my_callback(void)
{
...
}
由于这个功能,我的测试无法构建,因为 ceedling 不知道中断关键字。
**
Test Report
src/F2833BSP.c:64:17: error: expected ‘;’ before ‘void’
64 | static interrupt void callback(void)
| ^~~~~
| ;
ERROR: Shell command failed.
**