forked from FreeRTOS/FreeRTOS
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pull] main from FreeRTOS:main #4
Open
pull
wants to merge
162
commits into
rawalexe:main
Choose a base branch
from
FreeRTOS:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Add uxTaskBasePriorityGet and uxTaskBasePriorityGetFromISR unit test
* Add unit test for FreeRTOS SMP to verify SMP scheduler logic in tasks.c which is enclosed by `configNUMBER_OF_CORES > 1`. --------- Co-authored-by: Joshua Zarr <[email protected]> Co-authored-by: Anubhav Rawal <[email protected]> Co-authored-by: Alfred Gedeon <[email protected]> Co-authored-by: Adam Scislowicz <[email protected]> Co-authored-by: jannusi <[email protected]> Co-authored-by: Krishna Vamsi Tallapaneni <[email protected]> Co-authored-by: Kody Stribrny <[email protected]> Co-authored-by: kar-rahul-aws <[email protected]>
This allows the qemu-mps2 demo to use DHCP which requires ethernet mac functionality prior to when vApplicationIPNetworkEventHook or vApplicationIPNetworkEventHook_Multi are called.
Co-authored-by: Joseph Julicher <[email protected]>
Co-authored-by: Gaurav-Aggarwal-AWS <[email protected]>
* Remove deprecated ipconfigRAND32 * Uncrustify: triggered by comment. * Update * Check for return value * Uncrustify: triggered by comment. * Update --------- Co-authored-by: GitHub Action <[email protected]>
* Add Cmock test case for updates in vTaskResume API introduced in Kernel PR#865. * Update Kernel submodule pointer --------- Co-authored-by: Rahul Kar <[email protected]>
* Fix one typical misusage of CMock. CMock has three policies when dealing with pointer: 1. compare_ptr : compare the pointer itself; 2. compare_data : compare the data which is pointed by pointer; 3. smart : compare the pointer itself, or compare the data; By default, CMock use compare_data policy. Most test cases in FreeRTOS need to compare the pointer itself, and we haven't use CMock properly. For example, one test case of vTaskResume is wrong, because current CMock compares the data pointed by pointer, so the error didn't exposed. There are so many misusage need to fix, it will take a lot of work. I'm here to fix one typical misusage first. * Try to fix formatting syntax.
* Add test cases to cover vApplicationGetIdleTaskMemory and vApplicationGetPassiveIdleTaskMemory for prvCreateIdleTasks
* Fix comilation problem with unit test for passive idle task memory
* Add back mtCOVERAGE_TEST_MARKER in stream_buffer unit test
* Swap the device defender demo to Win32 instead of x86 * Swap the Jobs_Windows_Simulator Demo to have Win32 instead of x86 * Swap the Device_Shadow_Windows_Simulator Demo to have Win32 instead of x86 ---------
1. Change CMock policy of pointer from smart to compare_ptr; 2. Fix errors in test cases found by CMock.
* Add unit test for xTaskGetIdleTaskHandleForCore() --------- Co-authored-by: Rahul Kar <[email protected]>
* Update FreeRTOS.h for portTASK_SWITCH_HOOK --------- Co-authored-by: GitHub Action <[email protected]>
* Fix SMP unit test for switch hook
Update MPU Demos for Kernel V10.6.2
Disable handler checking in XMC1000 demo
* Update coreHTTP S3 Download Instructions * Revert to 85d5319 * Update comment for S3 Root CA in Upload and Download Multithreaded demos * Wrap changes to 80 characters * Uncrustify: triggered by comment. * Run Github Actions. * Fix broken section link in README * Wrap README text on 90 characters * Uncrustify: triggered by comment. * Run Github Actions --------- Co-authored-by: GitHub Action <[email protected]>
* Bump up to MBed-TLS V3.5.1, make changes to Visual Studio Projects to account for this. * Update MBedTLS Transport files to call psa_crypto_init() if the MBEDTLS_PSA_CRYPTO_C is set. * Add WIN32_LEAN_AND_MEAN to the corePKCS11_MQTT_Mutual_Auth_Windows_Simulator demo. Add in a check for MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET when making a TLS handshake. * Change transport interface files from using void * to mbedtls_pk_context * instead per changes in the MbedTLS API. * Changes to Fleet Provisioning Demo and Demo Setup to use ECDSA keys * Remove non-32 bit configs from various VisualStudio Projects. Enforce all projects using WIN32_LEAN_AND_MEAN as well as winsock2.h
* Update RISC-V QEMU project for GCC
* Exclude examples in FreeRTOS-Kernel from build * Update vega and microsemi risc-v eclipse project * Update polarfire eclipse project
This ensures that CCS builds this library when the project is first built after CCS installation. Signed-off-by: Gaurav Aggarwal <[email protected]>
Co-authored-by: Rahul Kar <[email protected]>
Cadence/Xtensa: Move Tensilica demos to Partner-Supported-Demos submodule Add a README to this deprecated demos directory indicating where to find the latest Tensilica test code. Signed-off-by: Ian Thompson <[email protected]>
Add volatile qualifier This is needed to ensure that the memory mapped address it always read. Signed-off-by: Gaurav Aggarwal <[email protected]>
This allows derived classes to override customCheck method to inject additional checks for some files. This is currently needed to accept ARM copyright in ARMv8-M files - FreeRTOS/FreeRTOS-Kernel#1147. Signed-off-by: Gaurav Aggarwal <[email protected]>
* Populate RSA key attributes in mbedtls context * Fix formatting --------- Co-authored-by: Rahul Kar <[email protected]>
* Add readme.url for demos * Updated FreeRTOS+TCP Minimal Windows Simulator Demo's readMe
* Enable release from forks * Update Kernel submodule pointer * Update manifest file --------- Co-authored-by: Rahul Kar <[email protected]>
* Update Community-Supported-Demos submodule pointer Signed-off-by: Gaurav Aggarwal <[email protected]>
PR - FreeRTOS/FreeRTOS-Kernel#1206 Signed-off-by: Gaurav Aggarwal <[email protected]>
PR Link - FreeRTOS/FreeRTOS-Kernel#1206 Signed-off-by: Gaurav Aggarwal <[email protected]>
This commit updates the xTaskGetIdleTaskHandle unit test as per the idle task naming logic. Signed-off-by: Sudeep Mohanty <[email protected]> Co-authored-by: Gaurav-Aggarwal-AWS <[email protected]>
Fix coverage tests for Kernel PR 1203 PR Link - FreeRTOS/FreeRTOS-Kernel#1203. Signed-off-by: Gaurav Aggarwal <[email protected]>
Update FreeRTOS+TCP to latest version V4.3.1
Update FreeRTOS-Kernel submodule pointer Signed-off-by: Gaurav Aggarwal <[email protected]>
Co-authored-by: Rahul Kar <[email protected]>
This is needed for PR - FreeRTOS/FreeRTOS-Kernel#1212.
Signed-off-by: Gaurav Aggarwal <[email protected]>
* * Added TraceRecorder demo for Percepio View in CORTEX_MPS2_QEMU_IAR_GCC (only gcc supported at the moment) * * Added TraceRecorder demo instructions in readme.md. * * Updated FreeRTOS-Plus-Trace pointer * * Using FreeRTOS-Plus-Trace submodule (TraceRecorder) instead of a static TraceRecorder copy.
Add tests to cover xQueueCreateSetStatic This API was recently added in the following PR: FreeRTOS/FreeRTOS-Kernel#1228 Signed-off-by: Gaurav Aggarwal <[email protected]>
…demo (#1325) * * Added TraceRecorder also in IAR project for demo CORTEX_MPS2_QEMU_IAR_GCC. * * Added TraceRecorder also in IAR project for demo CORTEX_MPS2_QEMU_IAR_GCC.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )