So, I am using a library for reading serial data. I have the source code of the library and it shows that the size of the serial data is something like this:
SOMETYPE ScopeArray[SCOPE_SIZE];
Where SCOPE_SIZE
is defined by a user-defined compiler flag at compile time. Now my question is: If I'm using the library and not the source code, can I change the value of SCOPE_SIZE
by recompiling my application not the library?
If this question doesn't make sense please let me know and I'll try my best to re-explain. Thanks!