Compare commits

...

6 commits

Author SHA1 Message Date
Muhammad Usman
1fb72aa50d
Merge b8d21ede7c into f5e6151b14 2025-07-11 16:42:31 +07:00
Aniruddha Kanhere
f5e6151b14
Update artifact path in the backup action (#1292)
* Add artifact backup action

* Fix artifact path
2025-07-09 09:53:13 -07:00
Florian La Roche
48a4939c9f
Fix compiler warning (#1291)
- In list.h fix a typo in comments.
- In portable/ThirdParty/GCC/Posix/port.c fix compiler warning about
  "gcc -Wwrite-strings".

Signed-off-by: Florian La Roche <Florian.LaRoche@gmail.com>
Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
2025-07-09 11:16:00 +05:30
usman-pak1991
b8d21ede7c
event_group.c visibilty converted to public from private. 2025-06-13 12:42:24 +05:00
Ghufran Khan
b942fdaad0
Merge pull request #1 from Selectronic-AU/feature/battries_msvc_port_fix
Excluding windows api from portmacro.h and adding it to port.c
2025-04-01 14:23:17 +11:00
Jauhersaeed
1973533fd4
excluding windows api from portmacro.h and adding it to port.c to avoid yeild() defined as macro in freertos-addons 2025-04-01 07:13:30 +05:00
6 changed files with 15 additions and 13 deletions

View file

@ -124,7 +124,7 @@ jobs:
with:
# This is dependent on the release script putting this zip file
# in this exact location.
artifact_path: ./tools/.github/scripts/FreeRTOS-KernelV${{ github.event.inputs.version_number }}.zip
artifact_path: ./FreeRTOS-KernelV${{ github.event.inputs.version_number }}.zip
release_tag: ${{ github.event.inputs.version_number }}
- name: Cleanup

View file

@ -241,7 +241,7 @@ add_library(freertos_kernel STATIC)
add_subdirectory(include)
add_subdirectory(portable)
target_sources(freertos_kernel PRIVATE
target_sources(freertos_kernel PUBLIC
croutine.c
event_groups.c
list.c

View file

@ -44,7 +44,7 @@
*
* In addition to it's value, each list item contains a pointer to the next
* item in the list (pxNext), a pointer to the list it is in (pxContainer)
* and a pointer to back to the object that contains it. These later two
* and a pointer back to the object that contains it. These later two
* pointers are included for efficiency of list manipulation. There is
* effectively a two way link between the object containing the list item and
* the list item itself.

View file

@ -33,6 +33,17 @@
#include "FreeRTOS.h"
#include "task.h"
#ifdef WIN32_LEAN_AND_MEAN
#include <winsock2.h>
#else
#include <winsock.h>
#endif
#include <windows.h>
#include <timeapi.h>
#include <mmsystem.h>
#include <winbase.h>
#ifdef __GNUC__
#include "mmsystem.h"
#else

View file

@ -29,16 +29,7 @@
#ifndef PORTMACRO_H
#define PORTMACRO_H
#ifdef WIN32_LEAN_AND_MEAN
#include <winsock2.h>
#else
#include <winsock.h>
#endif
#include <windows.h>
#include <timeapi.h>
#include <mmsystem.h>
#include <winbase.h>
#ifdef __cplusplus
extern "C" {

View file

@ -193,7 +193,7 @@ void prvFatalError( const char * pcCall,
}
/*-----------------------------------------------------------*/
static void prvPortSetCurrentThreadName( char * pxThreadName )
static void prvPortSetCurrentThreadName( const char * pxThreadName )
{
#ifdef __APPLE__
pthread_setname_np( pxThreadName );