You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
295 B
10 lines
295 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
sed -e 's/^.\+Arduino\.h.\+$/#include <stdint.h>/' ../mdaEPianoData.h >mdaEPianoData.h
|
||
|
sed -i 's/PROGMEM//' mdaEPianoData.h
|
||
|
sed -i 's/const//' mdaEPianoData.h
|
||
|
gcc -o xfade_generator xfade_generator.c
|
||
|
rm mdaEPianoData.h
|
||
|
./xfade_generator >../mdaEPianoData_xfade.h
|
||
|
rm xfade_generator
|