我在使用v-usb库构建项目时遇到了这个错误。关注是我的代码:
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/wdt.h>
#include "usbdrv.h"
#include <util/delay.h>
USB_PUBLIC uchar usbFunctionSetup(uchar data[8]) {
return 0; // do nothing for now
}
int main() {
uchar i;
wdt_enable(WDTO_1S); // enable 1s watchdog timer
usbInit();
usbDeviceDisconnect(); // enforce re-enumeration
for(i = 0; i<250; i++) { // wait 500 ms
wdt_reset(); // keep the watchdog happy
_delay_ms(2);
}
usbDeviceConnect();
sei(); // Enable interrupts after re-enumeration
while(1) {
wdt_reset(); // keep the watchdog happy
usbPoll();
}
return 0;
}
这是usbdrv.h中的相对部分:
#ifndef USB_PUBLIC
#define USB_PUBLIC
#endif
USB_PUBLIC void usbInit(void);
USB_PUBLIC void usbPoll(void)
有人可以帮助我吗?
答案 0 :(得分:0)
我猜您忘记将usbdrv-c文件添加到makefile中,或者可能已经编译好了,您必须将它们作为lib添加到您的make文件中。 (但是使用v-usb你需要添加c文件)
请阅读该库的文档,并查看可用于v-usb的众多示例。