include_file 831 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/sh
  2. INPUT_PATH=$1
  3. INPUT_FILE=`basename $1`
  4. # The byte array is named like the file, but in lower case with dots replaced by underscores
  5. ARRAYNAME=`echo $INPUT_FILE | sed -e 's/\\./_/g'`
  6. OUTPUT_FILE=$ARRAYNAME.h
  7. BYTES=`wc -c $INPUT_PATH | awk '{print $1}'`
  8. echo "Converting input file:"
  9. echo " $INPUT_PATH"
  10. echo "Creating include file:"
  11. echo " $OUTPUT_FILE"
  12. cat > $OUTPUT_FILE <<EOF
  13. #pragma once
  14. //
  15. // Include this file to use $INPUT_FILE ($BYTES bytes) in your sketch.
  16. //
  17. // File created on `date`
  18. // Made by the include_file script that is part of
  19. // "M5ez: the easiest way to program on M5Stack."
  20. // https://github.com/M5ez/M5ez
  21. //
  22. const char $ARRAYNAME[] PROGMEM = {
  23. EOF
  24. hexdump -v -e '" " 14/1 "0x%02x, " "\n"' $INPUT_PATH | sed -e "s/, 0x //g" | sed '$ s/.$//' >> $OUTPUT_FILE
  25. echo "};" >> $OUTPUT_FILE