You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- <b>Memory</b><br>The following malloc/free style APIs should be provided in cellular_platform.h.<br>
369
-
The <a href="https://www.freertos.org/a00111.html">FreeRTOS memory management document</a> can be referenced for these APIs.
369
+
The <a href="https://freertos.org/Documentation/02-Kernel/02-Kernel-features/09-Memory-management/01-Memory-management">FreeRTOS memory management document</a> can be referenced for these APIs.
370
370
```
371
371
// Example implementation of FreeRTOS malloc/free
372
372
#define Platform_Malloc pvPortMalloc
373
373
#define Platform_Free vPortFree
374
374
```
375
375
- <b>EventGroup</b><br>The following APIs and handle should be provided in cellular_platform.h.<br>
376
-
Please reference <a href="https://www.freertos.org/event-groups-API.html">FreeRTOS EvengGroup function prototypes</a>.
376
+
Please reference <a href="https://freertos.org/Documentation/02-Kernel/04-API-references/12-Event-groups-or-flags/00-Event-groups">FreeRTOS EvengGroup function prototypes</a>.
- <b>Delay</b><br>The following API should be provided in cellular_platform.h.<br>
400
-
Please reference <a href="https://www.freertos.org/a00127.html">FreeRTOS Task Control function prototypes</a>.
400
+
Please reference <a href="https://freertos.org/Documentation/02-Kernel/04-API-references/02-Task-control/00-Task-control">FreeRTOS Task Control function prototypes</a>.
401
401
```
402
402
// Example implementation of FreeRTOS Task Control
0 commit comments