A metronome using the FRDM K64F board

Committer:
ram54288
Date:
Sun May 14 18:40:18 2017 +0000
Revision:
0:a7a43371b306
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ram54288 0:a7a43371b306 1 #this is a sample configuration file for generate_module
ram54288 0:a7a43371b306 2 #you would use it by calling generate_module with the -ygenerate_config.yml option
ram54288 0:a7a43371b306 3 #files like this are useful for customizing generate_module to your environment
ram54288 0:a7a43371b306 4 :generate_module:
ram54288 0:a7a43371b306 5 :defaults:
ram54288 0:a7a43371b306 6 #these defaults are used in place of any missing options at the command line
ram54288 0:a7a43371b306 7 :path_src: ../src/
ram54288 0:a7a43371b306 8 :path_inc: ../src/
ram54288 0:a7a43371b306 9 :path_tst: ../test/
ram54288 0:a7a43371b306 10 :update_svn: true
ram54288 0:a7a43371b306 11 :includes:
ram54288 0:a7a43371b306 12 #use [] for no additional includes, otherwise list the includes on separate lines
ram54288 0:a7a43371b306 13 :src:
ram54288 0:a7a43371b306 14 - Defs.h
ram54288 0:a7a43371b306 15 - Board.h
ram54288 0:a7a43371b306 16 :inc: []
ram54288 0:a7a43371b306 17 :tst:
ram54288 0:a7a43371b306 18 - Defs.h
ram54288 0:a7a43371b306 19 - Board.h
ram54288 0:a7a43371b306 20 - Exception.h
ram54288 0:a7a43371b306 21 :boilerplates:
ram54288 0:a7a43371b306 22 #these are inserted at the top of generated files.
ram54288 0:a7a43371b306 23 #just comment out or remove if not desired.
ram54288 0:a7a43371b306 24 #use %1$s where you would like the file name to appear (path/extension not included)
ram54288 0:a7a43371b306 25 :src: |
ram54288 0:a7a43371b306 26 //-------------------------------------------
ram54288 0:a7a43371b306 27 // %1$s.c
ram54288 0:a7a43371b306 28 //-------------------------------------------
ram54288 0:a7a43371b306 29 :inc: |
ram54288 0:a7a43371b306 30 //-------------------------------------------
ram54288 0:a7a43371b306 31 // %1$s.h
ram54288 0:a7a43371b306 32 //-------------------------------------------
ram54288 0:a7a43371b306 33 :tst: |
ram54288 0:a7a43371b306 34 //-------------------------------------------
ram54288 0:a7a43371b306 35 // Test%1$s.c : Units tests for %1$s.c
ram54288 0:a7a43371b306 36 //-------------------------------------------