If I change:
(*temp)( s_InputBufferWordCount, &s_InputBufferWordPtr );
to:
(*temp)( s_InputBufferWordCount, s_InputBufferWordPtr );
I get the same compiler erro ...
I'm trying to implement a serial port command handler, adapting existing code that was written in XC8/XC32 for different/bigger PICs. That code parses an i ...