0

查看radio.c中的第 21行

“radiotimer_capture_cbt”结构在哪里定义?我无法找到它。

我希望社区的 C/C++ 专家可以帮助我找到这个结构的定义。

4

2 回答 2

2

几乎可以肯定在其中一个头文件中:

#include "board.h"
#include "radio.h"
#include "at86rf231.h"
#include "spi.h"
#include "radiotimer.h"
#include "debugpins.h"
#include "leds.h"
于 2013-08-12T23:05:38.927 回答
2

这里:https ://github.com/openwsn-berkeley/openwsn-fw/blob/a1dbfd8a3341ac3a82ffbb610b4d749f44c429d9/firmware/openos/bsp/boards/radiotimer.h

typedef void (*radiotimer_compare_cbt)();

只需按照头文件

于 2013-08-12T23:18:38.497 回答