Skip to content

Commit

Permalink
Update submodule for kernel and community demos (FreeRTOS#1134)
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot authored Dec 11, 2023
1 parent 76c0f87 commit 0857bd7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FreeRTOS/Source
Submodule Source updated 86 files
+2 −1 .github/scripts/kernel_checker.py
+86 −59 MISRA.md
+3 −0 croutine.c
+31 −29 event_groups.c
+10 −5 examples/cmake_example/main.c
+39 −0 examples/coverity/CMakeLists.txt
+135 −0 examples/coverity/FreeRTOSConfig.h
+58 −0 examples/coverity/README.md
+97 −0 examples/coverity/coverity_misra.config
+15 −0 include/FreeRTOS.h
+2 −2 include/croutine.h
+2 −2 include/event_groups.h
+1 −1 include/list.h
+1 −1 include/portable.h
+1 −1 include/projdefs.h
+72 −35 include/queue.h
+32 −28 include/stack_macros.h
+9 −8 include/stream_buffer.h
+107 −49 include/task.h
+21 −16 include/timers.h
+6 −7 list.c
+56 −15 portable/ARMv8M/non_secure/port.c
+50 −53 portable/BCC/16BitDOS/Flsh186/port.c
+33 −34 portable/BCC/16BitDOS/Flsh186/prtmacro.h
+57 −64 portable/BCC/16BitDOS/PC/port.c
+33 −34 portable/BCC/16BitDOS/PC/prtmacro.h
+33 −33 portable/BCC/16BitDOS/common/portasm.h
+19 −23 portable/BCC/16BitDOS/common/portcomn.c
+17 −22 portable/CodeWarrior/ColdFire_V1/port.c
+30 −29 portable/CodeWarrior/ColdFire_V1/portmacro.h
+23 −27 portable/CodeWarrior/ColdFire_V2/port.c
+28 −28 portable/CodeWarrior/ColdFire_V2/portmacro.h
+44 −46 portable/CodeWarrior/HCS12/port.c
+103 −104 portable/CodeWarrior/HCS12/portmacro.h
+16 −3 portable/GCC/ARM_CA9/portASM.S
+50 −8 portable/GCC/ARM_CM0/port.c
+56 −15 portable/GCC/ARM_CM23/non_secure/port.c
+56 −15 portable/GCC/ARM_CM23_NTZ/non_secure/port.c
+46 −1 portable/GCC/ARM_CM3/port.c
+56 −15 portable/GCC/ARM_CM33/non_secure/port.c
+56 −15 portable/GCC/ARM_CM33_NTZ/non_secure/port.c
+56 −15 portable/GCC/ARM_CM35P/non_secure/port.c
+56 −15 portable/GCC/ARM_CM35P_NTZ/non_secure/port.c
+46 −5 portable/GCC/ARM_CM3_MPU/port.c
+46 −1 portable/GCC/ARM_CM4F/port.c
+45 −5 portable/GCC/ARM_CM4_MPU/port.c
+56 −15 portable/GCC/ARM_CM55/non_secure/port.c
+56 −15 portable/GCC/ARM_CM55_NTZ/non_secure/port.c
+46 −1 portable/GCC/ARM_CM7/r0p1/port.c
+56 −15 portable/GCC/ARM_CM85/non_secure/port.c
+56 −15 portable/GCC/ARM_CM85_NTZ/non_secure/port.c
+46 −0 portable/IAR/ARM_CM0/port.c
+4 −4 portable/IAR/ARM_CM0/portasm.s
+56 −15 portable/IAR/ARM_CM23/non_secure/port.c
+56 −15 portable/IAR/ARM_CM23_NTZ/non_secure/port.c
+51 −1 portable/IAR/ARM_CM3/port.c
+56 −15 portable/IAR/ARM_CM33/non_secure/port.c
+56 −15 portable/IAR/ARM_CM33_NTZ/non_secure/port.c
+56 −15 portable/IAR/ARM_CM35P/non_secure/port.c
+56 −15 portable/IAR/ARM_CM35P_NTZ/non_secure/port.c
+51 −1 portable/IAR/ARM_CM4F/port.c
+50 −3 portable/IAR/ARM_CM4F_MPU/port.c
+56 −15 portable/IAR/ARM_CM55/non_secure/port.c
+56 −15 portable/IAR/ARM_CM55_NTZ/non_secure/port.c
+51 −1 portable/IAR/ARM_CM7/r0p1/port.c
+56 −15 portable/IAR/ARM_CM85/non_secure/port.c
+56 −15 portable/IAR/ARM_CM85_NTZ/non_secure/port.c
+38 −46 portable/Paradigm/Tern_EE/large_untested/port.c
+28 −28 portable/Paradigm/Tern_EE/large_untested/portasm.h
+36 −37 portable/Paradigm/Tern_EE/large_untested/portmacro.h
+35 −43 portable/Paradigm/Tern_EE/small/port.c
+20 −20 portable/Paradigm/Tern_EE/small/portasm.h
+38 −39 portable/Paradigm/Tern_EE/small/portmacro.h
+46 −4 portable/RVDS/ARM_CM4_MPU/port.c
+1 −1 portable/ThirdParty/Community-Supported-Ports
+1 −1 portable/ThirdParty/Partner-Supported-Ports
+49 −52 portable/oWatcom/16BitDOS/Flsh186/port.c
+32 −32 portable/oWatcom/16BitDOS/Flsh186/portmacro.h
+66 −74 portable/oWatcom/16BitDOS/PC/port.c
+33 −33 portable/oWatcom/16BitDOS/PC/portmacro.h
+53 −53 portable/oWatcom/16BitDOS/common/portasm.h
+37 −42 portable/oWatcom/16BitDOS/common/portcomn.c
+50 −57 queue.c
+63 −42 stream_buffer.c
+198 −102 tasks.c
+25 −25 timers.c
4 changes: 2 additions & 2 deletions manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license: "MIT"

dependencies:
- name: "FreeRTOS-Kernel"
version: "cd5c774b2"
version: "bd0f87c18"
repository:
type: "git"
url: "https://github.com/FreeRTOS/FreeRTOS-Kernel.git"
Expand Down Expand Up @@ -131,7 +131,7 @@ dependencies:
path: "FreeRTOS-Plus/Source/Application-Protocols/coreSNTP"

- name: "FreeRTOS-Community-Supported-Demos"
version: "1ba24b1"
version: "db9704f"
repository:
type: "git"
url: "https://github.com/FreeRTOS/FreeRTOS-Community-Supported-Demos"
Expand Down

0 comments on commit 0857bd7

Please sign in to comment.