HexAirbot / HexNanoMWC_HEX

A modified MWC2.2 flight control for Flexbot hex board.
54 stars 25 forks source link

'SerialOpen' was not declared in this scope #11

Open chrischain opened 8 years ago

chrischain commented 8 years ago

I'm getting the message

'SerialOpen' was not declared in this scope

in Serial.ino when trying to verify the code in Arduino 1.6.7.

I was able to verify and upload using Arduino 1.0.5 r2, but I shouldn't have to use the old version...

JW8025 commented 8 years ago

@chrischain the problem has been fixed, please check it out, thanks.

joe2112 commented 8 months ago

In Serial.ino the line 835 is "static void inline SerialOpen" is not correct since that makes the function local only, at least that is what I changed to get it to compile to "static void SerialOpen." Note I am a hack!