Skip to content

Commit

Permalink
Merge branch 'refactor/freertos_config_files' into 'master'
Browse files Browse the repository at this point in the history
FreeRTOS: Combine FreeRTOSConfig.h

Closes IDF-6082

See merge request espressif/esp-idf!22815
  • Loading branch information
Dazza0 committed Mar 22, 2023
2 parents 2b895ef + 54deed0 commit c71025d
Show file tree
Hide file tree
Showing 15 changed files with 406 additions and 880 deletions.
5 changes: 3 additions & 2 deletions components/freertos/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ set(srcs

set(include_dirs
"${kernel_dir}/include" # FreeRTOS headers via #include "freertos/xxx.h"
"${kernel_dir}/portable/${arch}/include" # For arch-specific FreeRTOSConfig_arch.h in portable/<arch>/include
"${kernel_dir}/portable/${arch}/include" # For arch-specific #include "freertos/portmacro.h"
"esp_additions/include/freertos" # For files with #include "FreeRTOSConfig.h"
"esp_additions/include") # For files with #include "freertos/FreeRTOSConfig.h"
"esp_additions/include" # For files with #include "freertos/FreeRTOSConfig.h"
# or #include "freertos/task_snapshot.h"
"esp_additions/arch/${arch}/include") # For #include "freertos/FreeRTOSConfig_arch.h"

set(private_include_dirs
"${kernel_dir}/portable/${arch}/include/freertos"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ extern void vTaskExitCritical( void );
#define portALT_GET_RUN_TIME_COUNTER_VALUE(x) do {x = (uint32_t)esp_timer_get_time();} while(0)
#endif

// ------------------- TCB Cleanup ----------------------
// --------------------- TCB Cleanup -----------------------

#define portCLEAN_UP_TCB( pxTCB ) vPortCleanUpTCB( pxTCB )

Expand Down Expand Up @@ -315,7 +315,7 @@ bool xPortcheckValidStackMem(const void *ptr);

/* ------------------------------------------------------ Misc ---------------------------------------------------------
* - Miscellaneous porting macros
* - These are not port of the FreeRTOS porting interface, but are used by other FreeRTOS dependent components
* - These are not part of the FreeRTOS porting interface, but are used by other FreeRTOS dependent components
* ------------------------------------------------------------------------------------------------------------------ */

// --------------------- App-Trace -------------------------
Expand Down
Loading

0 comments on commit c71025d

Please sign in to comment.