mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-01-10 11:29:38 +00:00
222f93f023
This platform is a basic waveshare stm32f107 devkit which contains a USART, USB device port, some buttons and some LEDs. Unfortunately not enough to bring up networking, but enough to test building and a simple contiki shell
27 lines
470 B
Makefile
27 lines
470 B
Makefile
TARGET=stm32f107_basic
|
|
|
|
all: stm32f107_basic
|
|
|
|
|
|
CONTIKI=../..
|
|
|
|
CONTIKI_TARGET_MAIN=contiki-main.c
|
|
|
|
PROJECT_SOURCEFILES = parity.c
|
|
|
|
|
|
randgen: randgen.c
|
|
gcc -DNDEBUG -I $(CONTIKI)/cpu/arm/stm32f107/ -I . -I $(CONTIKI)/core randgen.c -o randgen
|
|
|
|
randcheck: randcheck.c
|
|
gcc -DNDEBUG -I $(CONTIKI)/cpu/arm/stm32f107/ -I . -I $(CONTIKI)/core randcheck.c -o randcheck
|
|
|
|
clean: stm32test_clean
|
|
|
|
.PHONY: stm32test_clean
|
|
|
|
stm32test_clean:
|
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|