Merge pull request #1368 from zudwalex/nxp_examples

Add NXP examples
This commit is contained in:
Sergey Lyubka 2021-10-04 12:04:00 +01:00 committed by GitHub
commit 5c355a5ff3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 42 additions and 0 deletions

View File

@ -93,3 +93,21 @@ jobs:
- uses: actions/checkout@v2
- name: nxp-mimxrt1020-azurertos
run: make -C examples/nxp-mimxrt1020-azurertos build
nxp-frdmk66f-freertos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: nxp-frdmk66f-freertos
run: make -C examples/nxp-frdmk66f-freertos build
nxp-lpcxpresso54s018m-freertos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: nxp-lpcxpresso54s018m-freertos
run: make -C examples/nxp-lpcxpresso54s018m-freertos build
nxp-mimxrt1020-freertos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: nxp-mimxrt1020-freertos
run: make -C examples/nxp-mimxrt1020-freertos build

View File

@ -0,0 +1,8 @@
NAME ?= $(notdir $(CURDIR))
build:
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
make -C $(NAME) build
clean:
rm -rf $(NAME)

View File

@ -0,0 +1,8 @@
NAME ?= $(notdir $(CURDIR))
build:
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
make -C $(NAME) build
clean:
rm -rf $(NAME)

View File

@ -0,0 +1,8 @@
NAME ?= $(notdir $(CURDIR))
build:
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
make -C $(NAME) build
clean:
rm -rf $(NAME)