May
12
FSK Terminal project does not compile
Tue, 05/12/2009 - 21:09
Tried to build the project from the source code I downloaded on your site but it gives me 47 errors and 22 warnings. It appears to be missing several .h files, including at a minimum AudioQueueObject.h, AudioSignalAnalyzer.h, PatternRecognizer.h.
Any help?
Don

on Tue, 05/12/2009 - 21:25
Fixed it. I didn't realize I had to install the IR project too. If I were a more experienced iPhone developer I think I would have seen what was needed sooner, but this is actually my first time building a project on the Mac.
The serial iPhone hack is a very nice hack BTW. I will be customizing it to do some very interesting things. Thanks for publishing it!
on Mon, 07/06/2009 - 18:51
what is the fix for this. I have been having this problem for a while but no sucess. I will have to look around your blog. I am going to try and use the hack too.
on Sat, 03/13/2010 - 19:47
Trying to compile with 3.1.3 but getting errors:
lockfree.h:380: error: invalid conversion from 'char' to 'const char*'
lockfree.h:380: error: initializing argument 1 of 'int remove(const char*)'
on Mon, 03/22/2010 - 09:35
The problem is that stdio.h has a function remove(const char*) that it tries to use (no idea why) instead of the queue template function.
I'm not sure this is the right way to fix it, but it seems to work... Instead of remove(data), try this:
return queue::remove(data);
Post new comment