We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi, I have strucr define in a lib file from TI. Here the message error from Keil uvision 4, I got no error in my include:
Build Project 'PTX' - Target 'PTX' compiling main.c... C:\Users\Mathieu\Documents\Stage\Code_base_station\CodeBaseStation\PTX\src\usb_bulk_structs.h(42): error: #20: identifier "tUSBBuffer" is undefined extern const tUSBBuffer g_sTxBuffer; KB: Unexpected type: 0 C:\Users\Mathieu\Documents\Stage\Code_base_station\CodeBaseStation\PTX\error type>(43): error: #20: identifier "tUSBBuffer" is undefined extern const tUSBBuffer g_sRxBuffer; KB: Unexpected type: 0 C:\Users\Mathieu\Documents\Stage\Code_base_station\CodeBaseStation\PTX\error type>(44): error: #20: identifier "tUSBDBulkDevice" is undefined extern const tUSBDBulkDevice g_sBulkDevice; KB: Unexpected type: 0 <error type>src\main.c: 0 warnings, 3 errors ".\PTX.axf" - 3 Error(s), 0 Warning(s). Target not created
Anyone know how to fix this?
The solution to my problem was to include the librairy reference include:
#include "usblib/usblib.h" #include "usblib/usb-ids.h" #include "usblib/device/usbdevice.h" #include "usblib/device/usbdbulk.h"