Teensy and Arduino and Iridium SBD

Status
Not open for further replies.

bigredbee

Member
I've got a Sparkfun Pro-Micro up and running with the TinyGPS and IridiumSBD_Master libraries. I want to port everything over to the Teensy 3.1 to get more processor power and code space. TinyGPS works fine, but when I add in the Iridium library, I get compile errors. For example:

IridiumSBD.cpp:259:25: error: call of overloaded 'console(size_t&)' is ambiguous

Before I start hacking (I'm not a software guy) is there anything I should know? Has anyone already done this?


Greg
 
Sorry to respond to my own post, but I added this to IridiumSBD.h

void console(size_t m);

and this to IridiumSBD.cpp

void IridiumSBD::console(size_t m)
{
if (this->pConsoleStream)
pConsoleStream->print(m);
}


Not sure why this was needed (or even if it will work) but at least it compiles.

Greg
 
Status
Not open for further replies.
Back
Top