Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
09af912
Add BSD-3 license to endianness agnostic files (#417)
amgross Mar 19, 2024
90ae231
Merge branch 'develop'
MichalPrincNXP Jul 8, 2024
4bd2ecd
[MCUX-71720] Enable erpc middleware repo
MichalPrincNXP Oct 25, 2024
b6b47dd
[RPSDK-1336] Split rpmsg transport to master/remote for baremetal and…
JanKomarekNXP Nov 6, 2024
8f6e9a0
SDKGEN-3294 Rename RTE_Components.h to mcux_config.h.
Holt-Sun Nov 17, 2024
0fb3e34
[SDKGEN-3290] Allow unsigned int in generated erpc_config header
MichalPrincNXP Nov 25, 2024
a509c45
[MCUX-76020] Kconfig clean up menu
TomasGalbickaNXP Jan 22, 2025
956274a
[MCUX-76676] Remove duplicated SW-Content-Register.txt
MichalPrincNXP Feb 26, 2025
a0c7c29
[RPSDK-1356] update version for 25.03
TomasGalbickaNXP Mar 24, 2025
0ee051a
[RPSDK-1356] update version for 25.03
TomasGalbickaNXP Mar 24, 2025
04dbbbf
Merge branch 'release/25.03.00'
TomasGalbickaNXP Apr 1, 2025
74aa603
[MCUX-78178] align middleware README structure
TomasGalbickaNXP Apr 2, 2025
9beb3c0
[MCUX-78441] Add missing zephyr related records in SCR.txt
MichalPrincNXP Apr 11, 2025
ff97665
clang-format exclude list correction and sources reformat
MichalPrincNXP May 15, 2025
7385518
Fix typo in semaphore get (mutex -> semaphore), and write it can fail…
amgross May 12, 2025
f84916c
Call assert for listType before usage (#406)
andriyndev May 16, 2025
daa37cd
Free the arbitrated client token from client manager (#444)
amgross May 16, 2025
88869ae
fix(Makefile): install the erpc_simple_server header (#447)
ddassie-texa May 16, 2025
21b43ec
Fix possible AttributeError and OSError on calling TCPTransport.close…
Thom747 May 16, 2025
5580aea
Make java code jdk11 compliant (#432)
LukaBrazia May 26, 2025
3d3f454
[MCUX-78851][RT1186] Add imxrt1186 support into mu transport layer
MichalPrincNXP Apr 29, 2025
390c59d
[RPSDK-1365] 1.14.0 release update
MichalPrincNXP May 28, 2025
e8d5684
[RPSDK-1365] Add erpc sbom file
MichalPrincNXP May 30, 2025
d4feed5
fix erpcgen build (#462)
voedipus Jul 18, 2025
4f4d8fb
[circleci] Update linux and mac jobs
MichalPrincNXP Jul 23, 2025
85ea899
[RPSDK-1347] Improve eRPC python implementation
JanKomarekNXP Jan 9, 2025
9749163
[MCUX-77049] Addresses CERT INT30-C, INT31-C and INT32-C, HIS_CALLING…
MichalPrincNXP Jul 14, 2025
e9b4e6f
fix: notify client of timeout and cleanup
elupus Sep 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ commands:
jobs:
build-linux-gcc:
machine:
image: ubuntu-2204:2022.04.2 #https://circleci.com/developer/machine/image/ubuntu-2204 pick LTS
image: ubuntu-2204:2024.04.4 #https://circleci.com/developer/machine/image/ubuntu-2204 pick LTS
steps:
- checkout
- install_dependencies
Expand All @@ -32,7 +32,7 @@ jobs:

build-linux-clang:
machine:
image: ubuntu-2204:2022.04.2 #https://circleci.com/developer/machine/image/ubuntu-2204 pick LTS
image: ubuntu-2204:2024.04.4 #https://circleci.com/developer/machine/image/ubuntu-2204 pick LTS
steps:
- checkout
- install_dependencies:
Expand All @@ -44,8 +44,8 @@ jobs:

build-mac-gcc:
macos:
xcode: 12.5.1 # https://circleci.com/docs/using-macos/#supported-xcode-versions https://en.wikipedia.org/wiki/MacOS_version_history#Releases
resource_class: macos.x86.medium.gen2
xcode: 16.4.0 # https://circleci.com/docs/using-macos/#supported-xcode-versions https://en.wikipedia.org/wiki/MacOS_version_history#Releases
resource_class: macos.m1.medium.gen1
steps:
- checkout
- install_dependencies
Expand All @@ -55,8 +55,8 @@ jobs:

build-mac-clang:
macos:
xcode: 12.5.1 # https://circleci.com/docs/using-macos/#supported-xcode-versions https://en.wikipedia.org/wiki/MacOS_version_history#Releases
resource_class: macos.x86.medium.gen2
xcode: 16.4.0 # https://circleci.com/docs/using-macos/#supported-xcode-versions https://en.wikipedia.org/wiki/MacOS_version_history#Releases
resource_class: macos.m1.medium.gen1
steps:
- checkout
- install_dependencies:
Expand All @@ -73,10 +73,10 @@ jobs:
steps:
- checkout
- run: powershell.exe .\install_dependencies.ps1
- run: .\mingw64\bin\mingw32-make all
- run: .\mingw64\opt\bin\python3.exe .\test\run_unit_tests.py -m"..\\..\\mingw64\\bin\\mingw32-make"
# - store_artifacts:
# path: ./Release/MINGW64/erpcgen/erpcgen.exe
- run: C:\Users\circleci\project\cmake_installation\bin\cmake.exe --preset mingw64 -B ./build
- run: C:\Users\circleci\project\cmake_installation\bin\cmake.exe --build ./build --target erpcgen
- store_artifacts:
path: ./build/erpcgen/erpcgen.exe

build-windows-VS:
executor:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,12 @@ jobs:
- uses: DoozyX/clang-format-lint-action@v0.16.2
with:
source: '.'
exclude: './examples/zephyr/matrix_multiply_rpmsglite/remote/src/service ./examples/zephyr/matrix_multiply_rpmsglite/src/service ./examples/zephyr/matrix_multiply_uart/src/service'
exclude: './examples/zephyr/matrix_multiply_mbox/remote/src/service
./examples/zephyr/matrix_multiply_mbox/src/service
./examples/zephyr/matrix_multiply_rpmsglite/remote/src/service
./examples/zephyr/matrix_multiply_rpmsglite/src/service
./examples/zephyr/matrix_multiply_tcp/src/service
./examples/zephyr/matrix_multiply_uart/src/service
./examples/MCUXPRESSO_SDK/erpc_matrix_multiply/service
./examples/MCUXPRESSO_SDK/erpc_two_way_rpc/service'
clangFormatVersion: 16
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ kds
iar
mdk
lpcx
mcux
tags

format-files-to-commit.rb
Expand Down
Loading