FRDM K64F Metronome

Committer:
ram54288
Date:
Sun May 14 18:37:05 2017 +0000
Revision:
0:dbad57390bd1
Initial commit

Who changed what in which revision?

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