Skip to content

Instantly share code, notes, and snippets.

@matthijskooijman
Created March 23, 2015 11:18
Show Gist options
  • Save matthijskooijman/f5e87f36f1d98a55cd44 to your computer and use it in GitHub Desktop.
Save matthijskooijman/f5e87f36f1d98a55cd44 to your computer and use it in GitHub Desktop.
matthijs@grubby:~$ avr-gcc -x c -c foo.cpp
matthijs@grubby:~$ avr-gcc -c foo.cpp
foo.cpp:1:7: error: ‘__flash’ does not name a type
const __flash int array[] = { 3, 5, 7, 11, 13, 17, 19 };
^
matthijs@grubby:~$ cat foo.cpp
const __flash int array[] = { 3, 5, 7, 11, 13, 17, 19 };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment