diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-30 14:57:10 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-30 14:57:10 +0900 |
commit | 9f16e5e051c2cf11465d00a2ee0265039e448b06 (patch) | |
tree | fb3a664b095446e632a135c38ee139a85db48066 /example-cdc/Makefile | |
parent | b90e58f763bd277b7a5285601a34818f44f2b01c (diff) |
consolidate mcu-chip specific code
Diffstat (limited to 'example-cdc/Makefile')
-rw-r--r-- | example-cdc/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/example-cdc/Makefile b/example-cdc/Makefile index b6c4c76..2e6e667 100644 --- a/example-cdc/Makefile +++ b/example-cdc/Makefile @@ -4,7 +4,12 @@ PROJECT = sample CHOPSTX = .. LDSCRIPT= sample.ld -CSRC = sys.c aes-constant-ft.c sample.c usb-cdc.c usb_stm32f103.c +CSRC = sample.c usb-cdc.c + +CHIP=stm32f103 + +USE_SYS = yes +USE_USB = yes ################################### CROSS = arm-none-eabi- |