mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 00:37:44 -04:00
Fix and improve WIN32-MSVC demo in FreeRTOS/Demo. (#891)
* Fix WIN32-MSVC demo in FreeRTOS/Demo. * Add comments. * Fix corechecks * Re-work trace and keyboard input. * Remove unneeded line from trcConfig.h * Fix formatting in trcConfig.h * Fix heap issues, add FreeRTOS task to simulate keyboard interrupts. * Update comment on main_blinky. * Fix spelling. * Make keyboard input thread block on input. * Set thread affinity of keyboard input thread to not run on the same core as FreeRTOS. * Adjust heap regions and total heap size. * Fix spelling. Co-authored-by: Jason Carroll <czjaso@amazon.com>
This commit is contained in:
parent
db1ac5f63f
commit
228f76cbe3
11 changed files with 915 additions and 654 deletions
4
.github/scripts/core_checker.py
vendored
4
.github/scripts/core_checker.py
vendored
|
@ -270,6 +270,7 @@ FREERTOS_IGNORED_PATTERNS = [
|
|||
r'.*/trcConfig\.c.*',
|
||||
r'.*/trcSnapshotConfig\.h.*',
|
||||
r'.*/trcKernelPortConfig\.h.*',
|
||||
r'.*/trcKernelPortSnapshotConfig\.h.*',
|
||||
r'.*/MicroZed_hw_platform.*',
|
||||
r'.*/ThirdParty/.*',
|
||||
r'FreeRTOS\-Plus/Demo/Common/WinPCap/.*',
|
||||
|
@ -302,7 +303,8 @@ FREERTOS_IGNORED_FILES = [
|
|||
'FreeRTOS_asm_vectors.S',
|
||||
'interrupt_vector.s',
|
||||
'reg_test.S',
|
||||
'gdbinit'
|
||||
'gdbinit',
|
||||
|
||||
]
|
||||
|
||||
FREERTOS_HEADER = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue