I'm looking at your library and it looks great! Just small issue with latest trunk version, the TX_example won't compile with Arduino 1.0.5:
tx_example:105: error: 'SwashToThrottleMix' in namespace 'rc' does not name a type
tx_example.pde: In function 'void loop()':
tx_example:172: error: 'g_SwToThr' was not declared in this scope
Adding
#include<SPI.h>#include<SwashToThrottleMix.h>
and changing
#g_SwToThr(); -> g_SwToThr.apply();
fixed this problem for me.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm looking at your library and it looks great! Just small issue with latest trunk version, the TX_example won't compile with Arduino 1.0.5:
Adding
and changing
fixed this problem for me.