This has to be easy but I've looked in the compiler manual and I can't find a way to do this.
I just want to be able to have Q format numbers in the C code. I've seen this as 1.23Q14 or 0.978!15 and then it does the multiplication for you as 1.23 * 2^14 and puts it in an INT or LONG.
Right now I'm doing source code as 1.23*Q14 with #define Q14 16384. But all that is FLOAT for the computation and I think it's actually doing that computation in real time rather than only doing that computation at compile time.