Skip to content

Commit

Permalink
Merge branch 'main' into traceTest
Browse files Browse the repository at this point in the history
  • Loading branch information
aggarg committed Oct 12, 2023
2 parents 5a854c0 + d357564 commit 6a26284
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion FreeRTOS/Source
Submodule Source updated 513 files
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"CBMCFLAGS":
[
"--unwind 1",
"--unwindset prvInitialiseTaskLists.0:8,prvInitialiseNewTask.0:16,prvInitialiseNewTask.1:4"
"--unwindset prvInitialiseTaskLists.0:8,prvInitialiseNewTask.0:16,prvInitialiseNewTask.1:4,prvCreateIdleTasks.0:20,prvCreateIdleTasks.1:2"
],
"OBJS":
[
Expand Down
1 change: 1 addition & 0 deletions FreeRTOS/Test/CMock/tasks/FreeRTOSConfig_1.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
#define configTICK_RATE_HZ ( 1000 ) /* In this non-real time simulated environment the tick frequency has to be at least a multiple of the Win32 tick frequency, and therefore very slow. */
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 70 ) /* In this simulated case, the stack only has to hold one small structure as the real stack is part of the win32 thread. */
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 52 * 1024 ) )
#define configIDLE_TASK_NAME "IdleTaskLongerThanMax"
#define configMAX_TASK_NAME_LEN ( 12 )
#define configUSE_TRACE_FACILITY 0
#define configUSE_16_BIT_TICKS 0
Expand Down
2 changes: 1 addition & 1 deletion FreeRTOS/Test/CMock/tasks/tasks_1_utest.c
Original file line number Diff line number Diff line change
Expand Up @@ -3229,7 +3229,7 @@ void test_xTaskGetIdleTaskHandle_success( void )
/* Api Call */
ret_idle_handle = xTaskGetIdleTaskHandle();
ptcb = ret_idle_handle;
ret = strcmp( ptcb->pcTaskName, "IDLE" );
ret = strncmp( ptcb->pcTaskName, configIDLE_TASK_NAME, configMAX_TASK_NAME_LEN - 1 );
TEST_ASSERT_EQUAL( 0, ret );
}

Expand Down
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: "7372519cb"
version: "4bfb9b2d7"
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: "6f2ad44"
version: "1ba24b1"
repository:
type: "git"
url: "https://github.com/FreeRTOS/FreeRTOS-Community-Supported-Demos"
Expand Down

0 comments on commit 6a26284

Please sign in to comment.