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
Fix issues with CI header check with .gitmodules and directories #2
Open
aggarw13
wants to merge
24
commits into
master
Choose a base branch
from
fix-ci/header-checker
base: master
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.
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
* Update logging_stack.h file to avoid use of __FUNCTION__ macro * Revert to use __FUNCTION__ instead of __FILE__ * Fix comment about metadata format * Fix incorrect mapping of SdkLog function * Fix typo causing LOG_METADATA_ARGS to be undefined * Fix another bug with SdkLog macro definition * Fix formatting * Move mapping of SdkLog to vLoggingPrintf from logging_stack to config files * Remove dependency of LIBRARY_LOG_NAME on LIBRARY_METADATA_* macros * Minor improvements Co-authored-by: Gary Wicker <[email protected]> Co-authored-by: RichardBarry <[email protected]>
* Fix logging stack to print message in the first SdkLog * Do not log metadata if on the same line * Fix wrong var name * Change task names to DemoTask * Change for shadow too * Move declaration to a separate line Co-authored-by: Gary Wicker <[email protected]>
* URLs have changed on the FreeRTOS.org site - this commit matches the URLs in the code with the new URLs on the website. * Add link to device shadow directory to the shadow docs. * Update main.c * Update main.c * Update readme.txt * Update main.c * Update main.c * Update readme.txt Co-authored-by: yngki <[email protected]>
* Add submodule pointer to the aws/jobs-for-aws-iot-embedded-sdk repository for the Jobs library * Commonize the MQTT helper functions used by the Device Shadow demo by re-locating them to FreeRTOS-Plus/Demo/AWS/MQTT_Demo_Helpers and updating the Device Shadow demo to use the new files
* Add Makefile project for RISC-V QEMU virtpc This patch adds simple demo directory for QEMU virtpc machine. A demo just prints Tx/Rx message of queue to serial port, use no other hardware and use only primary core (currently hart0). Other cores are simply going to wfi state and execute nothing else. Example command is: qemu-system-riscv32 -nographic -machine virt -net none \ -chardev stdio,id=con,mux=on -serial chardev:con \ -mon chardev=con,mode=readline -bios none \ -kernel demo.elf -smp cpus=2 -s * Fix copyright and URLS of FreeRTOS * Fix Makefile * Add Readme.md * Separate blinky demo from main code Co-authored-by: alfred gedeon <[email protected]> Co-authored-by: Cobus van Eeden <[email protected]> Co-authored-by: Carl Lundin <[email protected]>
…TOS#405) Simply updates the Visual Studio projects so that WindowsTargetPlatformVersion is set to 10.0 for all MQTT demos.
* Add checker for file headers * file header check + git action
* Add helpful asterisk comments to the shadow demo. * Update FreeRTOS-Plus/Demo/AWS/Device_Shadow_Windows_Simulator/Device_Shadow_Demo/DemoTasks/ShadowDemoMainExample.c * Add stuff to the license header for GHA checks.
…RTOS#410) * Remove '1 tab == 4 spaces remarks' from check * Add initial ignore mechanism. Ignore selfcheck
* Move PKCS submodule forward. * Use common mbed code.
Adding common utilities that will be used by 4 coreHTTP demos: - Adding coreHTTP submodule pointer to FreeRTOS-Plus/Source/Application-Protocols/coreHTTP - Adding folder FreeRTOS-Plus/Demo/coreHTTP_Windows_Simulator/Http_Demo_Helpers with functions common to demos.
Removes the AWS IoT cert that is included in the demo_config.h files of the Shadow and Jobs demos. Additionally fixes some typos.
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.
The PR FreeRTOS#419 updates
.gitmodules
and adds a submodule (a.k.a a folder), but theFreeRTOS-Header-Checker / File Header Checks
check is failing as it does not correctly handle.gitmodules
and folders. This PR updates the script to ignore these 2 kinds of entries from being inspected