mkoval / hax

Hardware Abstraction for VEX is a C hardware abstraction layer for the VEX Robotics PIC18 and ARM Cortex M3 micrcontrollers. See the Wiki for a more detailed overview and for a guide to get started.
http://ieee.rutgers.edu/content/hax
6 stars 8 forks source link

Absolute include path in default.h #3

Closed mkoval closed 14 years ago

mkoval commented 14 years ago

One of the PIC vexlib headers uses an absolute system include path to picdefs.h. This may be a bandaid fix for a bigger problem in the auto dependency generation and should be modified to something akin to #include <picdefs.h> to limit the amount of changes required when changing the Hax directory structure.

codyps commented 14 years ago

There is no use of an absolute path that i can see. I cleaned up the thing I thought you were referring to in my 'develop' branch, however. Feel free to pull

mkoval commented 14 years ago

You are correct, the path that I was referring to was in fact relative - just relative to the wrong directory. Your latest commit fixed the issue.