You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm pretty green in both PIC and C++, so this might be obvious and I just haven't figured it out.
Is line 24 in #3HEF main.c necessary?
char buffer[ HEF_BLOCKSIZE];
It's unused in the code, so the only thing I've been able to come up with is that it serves to reserve a chunk of memory that won't be used by the compiler. However this is what the --ROM option does. Which, if I'm correct so far, makes me think that buffer might be leftover code from an earlier iteration that didn't use --ROM.
The text was updated successfully, but these errors were encountered:
I'm pretty green in both PIC and C++, so this might be obvious and I just haven't figured it out.
Is line 24 in #3HEF main.c necessary?
char buffer[ HEF_BLOCKSIZE];
It's unused in the code, so the only thing I've been able to come up with is that it serves to reserve a chunk of memory that won't be used by the compiler. However this is what the
--ROM
option does. Which, if I'm correct so far, makes me think thatbuffer
might be leftover code from an earlier iteration that didn't use--ROM
.The text was updated successfully, but these errors were encountered: