Merge pull request #1385 from zudwalex/move_stm32_examples

Move STM32 examples to stm32 folder
This commit is contained in:
Sergey Lyubka 2021-10-22 13:39:13 +01:00 committed by GitHub
commit a84acf5b8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
34 changed files with 18 additions and 18 deletions

View File

@ -68,25 +68,25 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: stm32-freertos-tcp
run: make -C examples/stm32-freertos-tcp build
run: make -C examples/stm32/stm32-freertos-tcp build
stm32-nucleo-f746z:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: stm32-nucleo-f746z
run: make -C examples/stm32-nucleo-f746z build
run: make -C examples/stm32/stm32-nucleo-f746z build
stm32-nucleo-f429z:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: stm32-nucleo-f429z
run: make -C examples/stm32-nucleo-f429z build
run: make -C examples/stm32/stm32-nucleo-f429z build
stm32-nucleo-h743z:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: stm32-nucleo-h743z
run: make -C examples/stm32-nucleo-h743z build
run: make -C examples/stm32/stm32-nucleo-h743z build
nxp-mimxrt1020-azurertos:
runs-on: ubuntu-latest
steps:

View File

@ -1,7 +1,7 @@
# FreeRTOS/{FreeRTOS-Kernel V10.4.3,FreeRTOS-Plus-TCP V2.3.2}
PROG = firmware
ARCH = stm32f7
PROJECT_ROOT_PATH = $(realpath $(CURDIR)/../..)
PROJECT_ROOT_PATH = $(realpath $(CURDIR)/../../..)
DOCKER ?= docker run --rm -v $(PROJECT_ROOT_PATH):$(PROJECT_ROOT_PATH) -w $(CURDIR) mdashnet/armgcc
FREERTOS_KERNEL_PATH ?= $(PROJECT_ROOT_PATH)/test/freertos-kernel
FREERTOS_PLUS_TCP_PATH ?= $(PROJECT_ROOT_PATH)/test/freertos-tcp

View File

@ -2,7 +2,7 @@ NAME ?= $(notdir $(CURDIR))
build:
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
cp ./../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
cp ./../../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
make -C $(NAME) build
clean:

View File

@ -2,7 +2,7 @@ NAME ?= $(notdir $(CURDIR))
build:
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
cp ./../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
cp ./../../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
make -C $(NAME) build
clean:

View File

@ -2,7 +2,7 @@ NAME ?= $(notdir $(CURDIR))
build:
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
cp ./../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
cp ./../../../mongoose.[ch] $(NAME)/Middlewares/Third_Party/Mongoose/
make -C $(NAME) build
clean: