I'm trying to create a QT project for a DM816x board and ran into a roadblock. My project will compile and run until I included the ti81xxfb.h file. My project can't seem to find it.
If I try to include ti81xxfb.h from the includes directory I get :
error: linux/ti81xxfb.h: No such file or directory
I copied the file directly into my project and everything worked great until I tried to use the FBIO_WAITFORVSYNC ioctl. I'm thinking this is a similar problem with my project referencing the wrong headers perhaps. I can compile the video examples using the ti81xxfb.h header and FBIO_WAITFORVSYNC but as soon as I try to add any of these to my QT projects it claims to not know what it is.
error: 'FBIO_WAITFORVSYNC' was not declared in this scope
Looking at the Makefile I can't tell exactly what is the problem but I'm guessing its the INCPATH????. Manually editing this doesn't make the compiler happy. I just haven't been able to verify this or find a solution. Ideas?