Skip to content

Commit 028ee20

Browse files
Fix links (#70)
<!--- Title --> Description ----------- <!--- Describe your changes in detail. --> Test Steps ----------- <!-- Describe the steps to reproduce. --> Checklist: ---------- <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [ ] I have tested my changes. No regression in existing tests. - [ ] I have modified and/or added unit-tests to cover the code changes in this Pull Request. Related Issue ----------- <!-- If any, please provide issue ID. --> By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent ff1e980 commit 028ee20

File tree

4 files changed

+22
-24
lines changed

4 files changed

+22
-24
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ server examples that are documented on the
1414
pages.
1515

1616
The
17-
[standard C library style API](https://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html)
17+
[standard C library style API](https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API)
1818
includes a thread local errno value, and the lower level native API provides a
1919
rich set of detailed error codes.
2020

include/ff_stdio.h

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
/*-----------------------------------------------------------
117117
* Get and set the task's file system errno
118118
* The most up to date API documentation is currently provided on the following URL:
119-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
119+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
120120
*-----------------------------------------------------------*/
121121

122122
/*
@@ -191,7 +191,7 @@
191191
/*-----------------------------------------------------------
192192
* Open and close a file
193193
* The most up to date API documentation is currently provided on the following URL:
194-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
194+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
195195
*-----------------------------------------------------------*/
196196
FF_FILE * ff_fopen( const char * pcFile,
197197
const char * pcMode );
@@ -201,7 +201,7 @@
201201
/*-----------------------------------------------------------
202202
* Seek and tell
203203
* The most up to date API documentation is currently provided on the following URL:
204-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
204+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
205205
*-----------------------------------------------------------*/
206206
int ff_fseek( FF_FILE * pxStream,
207207
long lOffset,
@@ -214,7 +214,7 @@
214214
/*-----------------------------------------------------------
215215
* Read and write
216216
* The most up to date API documentation is currently provided on the following URL:
217-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
217+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
218218
*-----------------------------------------------------------*/
219219
size_t ff_fread( void * pvBuffer,
220220
size_t xSize,
@@ -253,7 +253,7 @@
253253
* The actual length of the file will be made equal to the current writing
254254
* position
255255
* The most up to date API documentation is currently provided on the following URL:
256-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
256+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
257257
*-----------------------------------------------------------*/
258258
int ff_seteof( FF_FILE * pxStream );
259259

@@ -262,23 +262,23 @@
262262
* or write zero's up until the required length, and return a handle to the open
263263
* file. If NULL is returned, ff_errno contains an error code.
264264
* The most up to date API documentation is currently provided on the following URL:
265-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
265+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
266266
*-----------------------------------------------------------*/
267267
FF_FILE * ff_truncate( const char * pcFileName,
268268
long lTruncateSize );
269269

270270
/*-----------------------------------------------------------
271271
* Flush to disk
272272
* The most up to date API documentation is currently provided on the following URL:
273-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
273+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
274274
*-----------------------------------------------------------*/
275275
int ff_fflush( FF_FILE * pxStream );
276276

277277

278278
/*-----------------------------------------------------------
279279
* Create directory, remove and rename files
280280
* The most up to date API documentation is currently provided on the following URL:
281-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
281+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
282282
*-----------------------------------------------------------*/
283283
#if ( ffconfigMKDIR_RECURSIVE == 0 )
284284
int ff_mkdir( const char * pcPath );
@@ -293,21 +293,21 @@
293293
/*-----------------------------------------------------------
294294
* Create path specified by the pcPath parameter.
295295
* The most up to date API documentation is currently provided on the following URL:
296-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
296+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
297297
*-----------------------------------------------------------*/
298298
int ff_mkpath( const char * pcPath );
299299

300300
/*-----------------------------------------------------------
301301
* Remove the directory specified by the pcDirectory parameter.
302302
* The most up to date API documentation is currently provided on the following URL:
303-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
303+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
304304
*-----------------------------------------------------------*/
305305
int ff_rmdir( const char * pcDirectory );
306306

307307
/*-----------------------------------------------------------
308308
* Delete a directory and, recursively, all of its contents.
309309
* The most up to date API documentation is currently provided on the following URL:
310-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
310+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
311311
*-----------------------------------------------------------*/
312312
#if ( ffconfigUSE_DELTREE != 0 )
313313

@@ -325,14 +325,14 @@
325325
/*-----------------------------------------------------------
326326
* Remove/delete a file.
327327
* The most up to date API documentation is currently provided on the following URL:
328-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
328+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
329329
*-----------------------------------------------------------*/
330330
int ff_remove( const char * pcPath );
331331

332332
/*-----------------------------------------------------------
333333
* Move a file, also cross-directory but not across a file system.
334334
* The most up to date API documentation is currently provided on the following URL:
335-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
335+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
336336
*-----------------------------------------------------------*/
337337
int ff_rename( const char * pcOldName,
338338
const char * pcNewName,
@@ -342,7 +342,7 @@
342342
/*-----------------------------------------------------------
343343
* Get the status of a file.
344344
* The most up to date API documentation is currently provided on the following URL:
345-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
345+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
346346
*-----------------------------------------------------------*/
347347
int ff_stat( const char * pcFileName,
348348
FF_Stat_t * pxStatBuffer );
@@ -353,14 +353,14 @@
353353
/*-----------------------------------------------------------
354354
* Get the length of a file in bytes.
355355
* The most up to date API documentation is currently provided on the following URL:
356-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
356+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
357357
*-----------------------------------------------------------*/
358358
size_t ff_filelength( FF_FILE * pxFile );
359359

360360
/*-----------------------------------------------------------
361361
* Working directory and iterating through directories.
362362
* The most up to date API documentation is currently provided on the following URL:
363-
* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_FAT/Standard_File_System_API.html
363+
* https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/05-Standard_Native_File_System_API
364364
*-----------------------------------------------------------*/
365365
#if ffconfigHAS_CWD
366366
int ff_chdir( const char * pcDirectoryName );

portable/Zynq.2019.3/ff_sddisk.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*** documentation and testing is not necessarily complete. ***
1616
*** ***
1717
*** PLEASE REPORT EXPERIENCES USING THE SUPPORT RESOURCES FOUND ON THE ***
18-
*** URL: http://www.FreeRTOS.org/contact Active early adopters may, at ***
18+
*** URL: https://forums.freertos.org/ Active early adopters may, at ***
1919
*** the sole discretion of Real Time Engineers Ltd., be offered versions ***
2020
*** under a license other than that described below. ***
2121
*** ***
@@ -34,9 +34,8 @@
3434
* under the terms of the GNU General Public License V2. Links to the relevant
3535
* licenses follow:
3636
*
37-
* The FreeRTOS+FAT License Information Page: http://www.FreeRTOS.org/fat_license
38-
* The FreeRTOS Open Source License: http://www.FreeRTOS.org/license
39-
* The GNU General Public License Version 2: http://www.FreeRTOS.org/gpl-2.0.txt
37+
* The FreeRTOS+FAT License Information Page: https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/FreeRTOS_Plus_FAT_License
38+
* The FreeRTOS Open Source License: https://www.freertos.org/Documentation/03-Libraries/01-Library-overview/04-Licensing
4039
*
4140
* FreeRTOS+FAT is distributed in the hope that it will be useful. You cannot
4241
* use FreeRTOS+FAT unless you agree that you use the software 'as is'.

portable/linux/ff_sddisk.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
* under the terms of the GNU General Public License V2. Links to the relevant
1515
* licenses follow:
1616
*
17-
* The FreeRTOS+FAT License Information Page: http://www.FreeRTOS.org/fat_license
18-
* The FreeRTOS Open Source License: http://www.FreeRTOS.org/license
19-
* The GNU General Public License Version 2: http://www.FreeRTOS.org/gpl-2.0.txt
17+
* The FreeRTOS+FAT License Information Page: https://www.freertos.org/Documentation/03-Libraries/05-FreeRTOS-labs/04-FreeRTOS-plus-FAT/FreeRTOS_Plus_FAT_License
18+
* The FreeRTOS Open Source License: https://www.freertos.org/Documentation/03-Libraries/01-Library-overview/04-Licensing
2019
*
2120
* FreeRTOS+FAT is distributed in the hope that it will be useful. You cannot
2221
* use FreeRTOS+FAT unless you agree that you use the software 'as is'.

0 commit comments

Comments
 (0)