From 7b91fe4bc0afc475306e4aff16a5eaa242988b38 Mon Sep 17 00:00:00 2001 From: Janos Magasrevy <75690572+wes-jmagasrevy@users.noreply.github.com> Date: Tue, 11 May 2021 22:30:13 -0400 Subject: [PATCH 1/2] Update fs_fat.c --- FAT/fs_fat.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/FAT/fs_fat.c b/FAT/fs_fat.c index 8b69c61..20ed3b3 100644 --- a/FAT/fs_fat.c +++ b/FAT/fs_fat.c @@ -5684,9 +5684,8 @@ static void FS_FAT_ChkFile (FS_VOL *p_vol, #if (FS_TRACE_LEVEL >= TRACE_LEVEL_INFO) if (end_of_file == DEF_NO) { /* If EOF not found, too many clus's in chain ... */ - if ((file_size != 0) || (file_clus_tot != 0)) { /* Skip misleading message for 0-byte files w/o cluster */ + if ((file_size != 0) && (file_clus_tot != 0)) { /* Skip misleading message for 0-byte files w/o cluster */ FS_TRACE_INFO(("FS_FAT_ChkFile(): Extra clusters linked to file.\r\n")); - /* ... #### del extra clus's. */ } } #endif From 1fd10161db29b9e4921b72cf0068e560963e57d9 Mon Sep 17 00:00:00 2001 From: Janos Magasrevy <75690572+wes-jmagasrevy@users.noreply.github.com> Date: Thu, 20 May 2021 17:18:59 -0400 Subject: [PATCH 2/2] Updated version and Copyright year. Incremented FS_VERSION constant. Updated Readme. --- APP/Template/fs_app.c | 2 +- APP/Template/fs_app.h | 2 +- APP/Template/fs_app_cfg.h | 2 +- Cfg/Template/fs_cfg.h | 4 +- Cmd/Cfg/Template/fs_shell_cfg.h | 4 +- Cmd/fs_shell.c | 4 +- Cmd/fs_shell.h | 4 +- Dev/IDE/BSP/Template/bsp_fs_dev_ide.c | 4 +- Dev/IDE/fs_dev_ide.c | 4 +- Dev/IDE/fs_dev_ide.h | 4 +- Dev/MSC/fs_dev_msc.c | 4 +- Dev/MSC/fs_dev_msc.h | 4 +- .../BSP/Template/bsp_fs_dev_nand_ctrlr_gen.c | 4 +- Dev/NAND/Cfg/Template/fs_dev_nand_cfg.h | 4 +- .../GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.c | 4 +- .../GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.h | 4 +- .../GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.c | 4 +- .../GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.h | 4 +- .../GenExt/fs_dev_nand_ctrlr_imx28_bch.c | 4 +- .../GenExt/fs_dev_nand_ctrlr_imx28_bch.h | 4 +- Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.c | 4 +- Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.h | 4 +- Dev/NAND/Part/fs_dev_nand_part_onfi.c | 4 +- Dev/NAND/Part/fs_dev_nand_part_onfi.h | 4 +- Dev/NAND/Part/fs_dev_nand_part_static.c | 4 +- Dev/NAND/Part/fs_dev_nand_part_static.h | 4 +- Dev/NAND/fs_dev_nand.c | 4 +- Dev/NAND/fs_dev_nand.h | 4 +- .../BSP/Template (SPI GPIO)/bsp_fs_dev_nor.c | 4 +- Dev/NOR/BSP/Template (SPI)/bsp_fs_dev_nor.c | 4 +- Dev/NOR/BSP/Template/bsp_fs_dev_nor.c | 4 +- Dev/NOR/PHY/Template/fs_dev_nor_template.c | 4 +- Dev/NOR/PHY/Template/fs_dev_nor_template.h | 4 +- Dev/NOR/PHY/fs_dev_nor_amd_1x08.c | 4 +- Dev/NOR/PHY/fs_dev_nor_amd_1x08.h | 4 +- Dev/NOR/PHY/fs_dev_nor_amd_1x16.c | 4 +- Dev/NOR/PHY/fs_dev_nor_amd_1x16.h | 4 +- Dev/NOR/PHY/fs_dev_nor_at25.c | 4 +- Dev/NOR/PHY/fs_dev_nor_at25.h | 4 +- Dev/NOR/PHY/fs_dev_nor_at45.c | 4 +- Dev/NOR/PHY/fs_dev_nor_at45.h | 4 +- Dev/NOR/PHY/fs_dev_nor_intel.c | 4 +- Dev/NOR/PHY/fs_dev_nor_intel.h | 4 +- Dev/NOR/PHY/fs_dev_nor_micron_np5q.c | 4 +- Dev/NOR/PHY/fs_dev_nor_micron_np5q.h | 4 +- Dev/NOR/PHY/fs_dev_nor_sst25.c | 4 +- Dev/NOR/PHY/fs_dev_nor_sst25.h | 4 +- Dev/NOR/PHY/fs_dev_nor_sst39.c | 4 +- Dev/NOR/PHY/fs_dev_nor_sst39.h | 4 +- Dev/NOR/PHY/fs_dev_nor_stm25.c | 4 +- Dev/NOR/PHY/fs_dev_nor_stm25.h | 4 +- Dev/NOR/PHY/fs_dev_nor_stm29_1x08.c | 4 +- Dev/NOR/PHY/fs_dev_nor_stm29_1x08.h | 4 +- Dev/NOR/PHY/fs_dev_nor_stm29_1x16.c | 4 +- Dev/NOR/PHY/fs_dev_nor_stm29_1x16.h | 4 +- Dev/NOR/PHY/fs_dev_nor_w25q.c | 4 +- Dev/NOR/PHY/fs_dev_nor_w25q.h | 4 +- Dev/NOR/fs_dev_nor.c | 4 +- Dev/NOR/fs_dev_nor.h | 4 +- Dev/RAMDisk/fs_dev_ramdisk.c | 4 +- Dev/RAMDisk/fs_dev_ramdisk.h | 4 +- Dev/SD/Card/BSP/Template/bsp_fs_dev_sd_card.c | 4 +- Dev/SD/Card/fs_dev_sd_card.c | 4 +- Dev/SD/Card/fs_dev_sd_card.h | 4 +- .../BSP/Template (GPIO)/bsp_fs_dev_sd_spi.c | 4 +- Dev/SD/SPI/BSP/Template/bsp_fs_dev_sd_spi.c | 4 +- Dev/SD/SPI/fs_dev_sd_spi.c | 4 +- Dev/SD/SPI/fs_dev_sd_spi.h | 4 +- Dev/SD/fs_dev_sd.c | 4 +- Dev/SD/fs_dev_sd.h | 4 +- Dev/Template/fs_dev_template.c | 4 +- Dev/Template/fs_dev_template.h | 4 +- FAT/fs_fat.c | 4 +- FAT/fs_fat.h | 4 +- FAT/fs_fat_dir.c | 4 +- FAT/fs_fat_dir.h | 4 +- FAT/fs_fat_entry.c | 4 +- FAT/fs_fat_entry.h | 4 +- FAT/fs_fat_fat12.c | 4 +- FAT/fs_fat_fat12.h | 4 +- FAT/fs_fat_fat16.c | 4 +- FAT/fs_fat_fat16.h | 4 +- FAT/fs_fat_fat32.c | 4 +- FAT/fs_fat_fat32.h | 4 +- FAT/fs_fat_file.c | 4 +- FAT/fs_fat_file.h | 4 +- FAT/fs_fat_journal.c | 4 +- FAT/fs_fat_journal.h | 4 +- FAT/fs_fat_lfn.c | 4 +- FAT/fs_fat_lfn.h | 4 +- FAT/fs_fat_sfn.c | 4 +- FAT/fs_fat_sfn.h | 4 +- FAT/fs_fat_type.h | 4 +- OS/None/fs_os.c | 4 +- OS/None/fs_os.h | 4 +- OS/Template/fs_os.c | 4 +- OS/Template/fs_os.h | 4 +- OS/uCOS-II/fs_os.c | 4 +- OS/uCOS-II/fs_os.h | 4 +- OS/uCOS-III/fs_os.c | 4 +- OS/uCOS-III/fs_os.h | 4 +- README.rst | 45 +++++++++++++++++++ Source/fs.c | 4 +- Source/fs.h | 6 +-- Source/fs_api.c | 4 +- Source/fs_api.h | 4 +- Source/fs_buf.c | 4 +- Source/fs_buf.h | 4 +- Source/fs_cache.c | 4 +- Source/fs_cache.h | 4 +- Source/fs_cfg_fs.h | 4 +- Source/fs_ctr.h | 4 +- Source/fs_def.h | 4 +- Source/fs_dev.c | 4 +- Source/fs_dev.h | 4 +- Source/fs_dir.c | 4 +- Source/fs_dir.h | 4 +- Source/fs_entry.c | 4 +- Source/fs_entry.h | 4 +- Source/fs_err.h | 4 +- Source/fs_file.c | 4 +- Source/fs_file.h | 4 +- Source/fs_partition.c | 4 +- Source/fs_partition.h | 4 +- Source/fs_sys.c | 4 +- Source/fs_sys.h | 4 +- Source/fs_type.h | 4 +- Source/fs_unicode.c | 4 +- Source/fs_unicode.h | 4 +- Source/fs_util.c | 4 +- Source/fs_util.h | 4 +- Source/fs_vol.c | 4 +- Source/fs_vol.h | 4 +- readme.md | 5 --- 134 files changed, 307 insertions(+), 267 deletions(-) create mode 100644 README.rst delete mode 100644 readme.md diff --git a/APP/Template/fs_app.c b/APP/Template/fs_app.c index c112f5b..dd72bc0 100644 --- a/APP/Template/fs_app.c +++ b/APP/Template/fs_app.c @@ -20,7 +20,7 @@ * TEMPLATE * * Filename : fs_app.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/APP/Template/fs_app.h b/APP/Template/fs_app.h index d516fff..2329c77 100644 --- a/APP/Template/fs_app.h +++ b/APP/Template/fs_app.h @@ -20,7 +20,7 @@ * TEMPLATE * * Filename : fs_app.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/APP/Template/fs_app_cfg.h b/APP/Template/fs_app_cfg.h index 2fa60d5..d74aaeb 100644 --- a/APP/Template/fs_app_cfg.h +++ b/APP/Template/fs_app_cfg.h @@ -19,7 +19,7 @@ * * * Filename : fs_app_cfg.h -* Version : V4.08.00 +* Version : V4.08.01 * Note(s) : This is an example application configuration template when using the initialization code * provided in fs_app.c. The relevant preprocessor definitions should be included in the project global * app_cfg.h. Note that the values are demonstrative only and should be configured correctly for the diff --git a/Cfg/Template/fs_cfg.h b/Cfg/Template/fs_cfg.h index 971ab25..884b50f 100644 --- a/Cfg/Template/fs_cfg.h +++ b/Cfg/Template/fs_cfg.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TEMPLATE * * Filename : fs_cfg.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Cmd/Cfg/Template/fs_shell_cfg.h b/Cmd/Cfg/Template/fs_shell_cfg.h index cef30d3..a179698 100644 --- a/Cmd/Cfg/Template/fs_shell_cfg.h +++ b/Cmd/Cfg/Template/fs_shell_cfg.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TEMPLATE * * Filename : fs_shell_cfg.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Cmd/fs_shell.c b/Cmd/fs_shell.c index e3e6b52..a54bc66 100644 --- a/Cmd/fs_shell.c +++ b/Cmd/fs_shell.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FS SHELL COMMANDS * * Filename : fs_shell.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Cmd/fs_shell.h b/Cmd/fs_shell.h index 3d7cff2..bbcab74 100644 --- a/Cmd/fs_shell.h +++ b/Cmd/fs_shell.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FS SHELL COMMANDS * * Filename : fs_shell.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/IDE/BSP/Template/bsp_fs_dev_ide.c b/Dev/IDE/BSP/Template/bsp_fs_dev_ide.c index a30dbc6..674c9c4 100644 --- a/Dev/IDE/BSP/Template/bsp_fs_dev_ide.c +++ b/Dev/IDE/BSP/Template/bsp_fs_dev_ide.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE * * Filename : bsp_fs_dev_ide.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/IDE/fs_dev_ide.c b/Dev/IDE/fs_dev_ide.c index e423dbf..2532f16 100644 --- a/Dev/IDE/fs_dev_ide.c +++ b/Dev/IDE/fs_dev_ide.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * IDE DEVICES * * Filename : fs_dev_ide.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) CompactFlash Association. "CF+ and CompactFlash Specification Revision 4.1". * 002/16/07. diff --git a/Dev/IDE/fs_dev_ide.h b/Dev/IDE/fs_dev_ide.h index dfe7563..f5b7909 100644 --- a/Dev/IDE/fs_dev_ide.h +++ b/Dev/IDE/fs_dev_ide.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * IDE DEVICES * * Filename : fs_dev_ide.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) CompactFlash Association. "CF+ and CompactFlash Specification Revision 4.1". * 002/16/07. diff --git a/Dev/MSC/fs_dev_msc.c b/Dev/MSC/fs_dev_msc.c index ded8ffb..22e7f73 100644 --- a/Dev/MSC/fs_dev_msc.c +++ b/Dev/MSC/fs_dev_msc.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * for uC/USB-Host * * Filename : fs_dev_msc.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Assumes uC/USB-Host V3.10 or newer is included in the project build. * diff --git a/Dev/MSC/fs_dev_msc.h b/Dev/MSC/fs_dev_msc.h index 8e83ab7..1b75b27 100644 --- a/Dev/MSC/fs_dev_msc.h +++ b/Dev/MSC/fs_dev_msc.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * for uC/USB-Host * * Filename : fs_dev_msc.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Assumes uC/USB-Host V3.10, 3.30 or 3.40 is included in the project build. * diff --git a/Dev/NAND/BSP/Template/bsp_fs_dev_nand_ctrlr_gen.c b/Dev/NAND/BSP/Template/bsp_fs_dev_nand_ctrlr_gen.c index 6f044d6..0492257 100644 --- a/Dev/NAND/BSP/Template/bsp_fs_dev_nand_ctrlr_gen.c +++ b/Dev/NAND/BSP/Template/bsp_fs_dev_nand_ctrlr_gen.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE * * Filename : bsp_fs_dev_nand_ctrlr_gen.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Cfg/Template/fs_dev_nand_cfg.h b/Dev/NAND/Cfg/Template/fs_dev_nand_cfg.h index eda2ea5..d805c24 100644 --- a/Dev/NAND/Cfg/Template/fs_dev_nand_cfg.h +++ b/Dev/NAND/Cfg/Template/fs_dev_nand_cfg.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TEMPLATE * * Filename : fs_nand_cfg.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.c b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.c index e0b2b3d..1a302b3 100644 --- a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.c +++ b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * NAND DEVICE GENERIC CONTROLLER MICRON ON-CHIP ECC EXTENSION * * Filename : fs_dev_nand_ctrlr_gen_micron_ecc.c -* Version : V4.08.00 +* Version : V4.08.01 * Note(s) : (1) This controller generic extension is compatible with some Micron * NAND devices with on-chip ECC hardware calculation, including: * Micron 29F1G08ABADA diff --git a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.h b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.h index 4648941..ab2dadd 100644 --- a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.h +++ b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_micron_ecc.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * NAND DEVICE GENERIC CONTROLLER MICRON HARDWARE ECC EXTENSION * * Filename : fs_dev_nand_ctrlr_gen_micron_ecc.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.c b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.c index 1834670..a15653e 100644 --- a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.c +++ b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * NAND DEVICE GENERIC CONTROLLER SOFTWARE ECC EXTENSION * * Filename : fs_dev_nand_ctrlr_gen_soft_ecc.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.h b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.h index f5c19e3..1c026a6 100644 --- a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.h +++ b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_gen_soft_ecc.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * NAND DEVICE GENERIC CONTROLLER SOFTWARE ECC EXTENSION * * Filename : fs_dev_nand_ctrlr_gen_soft_ecc.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.c b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.c index bae070a..e946f1a 100644 --- a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.c +++ b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * NAND DEVICE GENERIC CONTROLLER IMX28 HARDWARE ECC EXTENSION * * Filename : fs_dev_nand_ctrlr_imx28_bch.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.h b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.h index a48d733..f34926b 100644 --- a/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.h +++ b/Dev/NAND/Ctrlr/GenExt/fs_dev_nand_ctrlr_imx28_bch.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * NAND DEVICE GENERIC CONTROLLER SOFTWARE ECC EXTENSION * * Filename : fs_dev_nand_ctrlr_imx28_bch.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.c b/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.c index 901518c..43e5875 100644 --- a/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.c +++ b/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * GENERIC CONTROLLER-LAYER DRIVER * * Filename : fs_dev_nand_ctrlr_gen.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.h b/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.h index 20a1022..b91ae66 100644 --- a/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.h +++ b/Dev/NAND/Ctrlr/fs_dev_nand_ctrlr_gen.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * GENERIC CONTROLLER-LAYER DRIVER * * Filename : fs_dev_nand_ctrlr_gen.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Part/fs_dev_nand_part_onfi.c b/Dev/NAND/Part/fs_dev_nand_part_onfi.c index fa04ae6..32beb54 100644 --- a/Dev/NAND/Part/fs_dev_nand_part_onfi.c +++ b/Dev/NAND/Part/fs_dev_nand_part_onfi.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * NAND FLASH ONFI DEVICES * * Filename : fs_dev_nand_part_onfi.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Part/fs_dev_nand_part_onfi.h b/Dev/NAND/Part/fs_dev_nand_part_onfi.h index 801c20a..6d3f154 100644 --- a/Dev/NAND/Part/fs_dev_nand_part_onfi.h +++ b/Dev/NAND/Part/fs_dev_nand_part_onfi.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * NAND FLASH ONFI DEVICES * * Filename : fs_dev_nand_part_onfi.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Part/fs_dev_nand_part_static.c b/Dev/NAND/Part/fs_dev_nand_part_static.c index 3eb50fd..7402088 100644 --- a/Dev/NAND/Part/fs_dev_nand_part_static.c +++ b/Dev/NAND/Part/fs_dev_nand_part_static.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * STATIC CONFIGURATION PART-LAYER DRIVER * * Filename : fs_dev_nand_static.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/Part/fs_dev_nand_part_static.h b/Dev/NAND/Part/fs_dev_nand_part_static.h index 7273940..dbd117a 100644 --- a/Dev/NAND/Part/fs_dev_nand_part_static.h +++ b/Dev/NAND/Part/fs_dev_nand_part_static.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * STATIC CONFIGURATION PART-LAYER DRIVER * * Filename : fs_dev_nand_static.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NAND/fs_dev_nand.c b/Dev/NAND/fs_dev_nand.c index 202c8c1..4d63fba 100644 --- a/Dev/NAND/fs_dev_nand.c +++ b/Dev/NAND/fs_dev_nand.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * NAND FLASH DEVICES * * Filename : fs_dev_nand.c -* Version : V4.08.00 +* Version : V4.08.01 * ********************************************************************************************************* * Note(s) : (1) Supports NAND-type Flash memory devices, including : diff --git a/Dev/NAND/fs_dev_nand.h b/Dev/NAND/fs_dev_nand.h index a780839..0bb6d61 100644 --- a/Dev/NAND/fs_dev_nand.h +++ b/Dev/NAND/fs_dev_nand.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * NAND FLASH DEVICES * * Filename : fs_dev_nand.h -* Version : V4.08.00 +* Version : V4.08.01 * ********************************************************************************************************* * Note(s) : (1) Supports NAND-type Flash memory devices, including : diff --git a/Dev/NOR/BSP/Template (SPI GPIO)/bsp_fs_dev_nor.c b/Dev/NOR/BSP/Template (SPI GPIO)/bsp_fs_dev_nor.c index e40d684..dce9d2b 100644 --- a/Dev/NOR/BSP/Template (SPI GPIO)/bsp_fs_dev_nor.c +++ b/Dev/NOR/BSP/Template (SPI GPIO)/bsp_fs_dev_nor.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE (SPI, GPIO) * * Filename : bsp_fs_dev_nor.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/BSP/Template (SPI)/bsp_fs_dev_nor.c b/Dev/NOR/BSP/Template (SPI)/bsp_fs_dev_nor.c index b17f97b..8798a70 100644 --- a/Dev/NOR/BSP/Template (SPI)/bsp_fs_dev_nor.c +++ b/Dev/NOR/BSP/Template (SPI)/bsp_fs_dev_nor.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE (SPI) * * Filename : bsp_fs_dev_nor.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/BSP/Template/bsp_fs_dev_nor.c b/Dev/NOR/BSP/Template/bsp_fs_dev_nor.c index 09e783d..b92bcfc 100644 --- a/Dev/NOR/BSP/Template/bsp_fs_dev_nor.c +++ b/Dev/NOR/BSP/Template/bsp_fs_dev_nor.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE (PARALLEL) * * Filename : bsp_fs_dev_nor.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/Template/fs_dev_nor_template.c b/Dev/NOR/PHY/Template/fs_dev_nor_template.c index 5d27315..c21db90 100644 --- a/Dev/NOR/PHY/Template/fs_dev_nor_template.c +++ b/Dev/NOR/PHY/Template/fs_dev_nor_template.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * TEMPLATE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_template.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/Template/fs_dev_nor_template.h b/Dev/NOR/PHY/Template/fs_dev_nor_template.h index 4fa1971..e47be5f 100644 --- a/Dev/NOR/PHY/Template/fs_dev_nor_template.h +++ b/Dev/NOR/PHY/Template/fs_dev_nor_template.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * TEMPLATE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_template.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/fs_dev_nor_amd_1x08.c b/Dev/NOR/PHY/fs_dev_nor_amd_1x08.c index 07dd51e..79b1af3 100644 --- a/Dev/NOR/PHY/fs_dev_nor_amd_1x08.c +++ b/Dev/NOR/PHY/fs_dev_nor_amd_1x08.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * AMD-COMPATIBLE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_amd_1x08.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports CFI NOR flash implementing AMD command set, including : * diff --git a/Dev/NOR/PHY/fs_dev_nor_amd_1x08.h b/Dev/NOR/PHY/fs_dev_nor_amd_1x08.h index dbecd4a..8e0aa67 100644 --- a/Dev/NOR/PHY/fs_dev_nor_amd_1x08.h +++ b/Dev/NOR/PHY/fs_dev_nor_amd_1x08.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * AMD-COMPATIBLE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_amd_1x08.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports CFI NOR flash implementing AMD command set, including : * diff --git a/Dev/NOR/PHY/fs_dev_nor_amd_1x16.c b/Dev/NOR/PHY/fs_dev_nor_amd_1x16.c index f15586a..c8250f1 100644 --- a/Dev/NOR/PHY/fs_dev_nor_amd_1x16.c +++ b/Dev/NOR/PHY/fs_dev_nor_amd_1x16.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * AMD-COMPATIBLE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_amd_1x16.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports CFI NOR flash implementing AMD command set, including : * diff --git a/Dev/NOR/PHY/fs_dev_nor_amd_1x16.h b/Dev/NOR/PHY/fs_dev_nor_amd_1x16.h index 2cbe250..326189e 100644 --- a/Dev/NOR/PHY/fs_dev_nor_amd_1x16.h +++ b/Dev/NOR/PHY/fs_dev_nor_amd_1x16.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * AMD-COMPATIBLE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_amd_1x16.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports CFI NOR flash implementing AMD command set, including : * diff --git a/Dev/NOR/PHY/fs_dev_nor_at25.c b/Dev/NOR/PHY/fs_dev_nor_at25.c index e90111b..cdf401f 100644 --- a/Dev/NOR/PHY/fs_dev_nor_at25.c +++ b/Dev/NOR/PHY/fs_dev_nor_at25.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ATMEL AT25 SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_at25.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/fs_dev_nor_at25.h b/Dev/NOR/PHY/fs_dev_nor_at25.h index c129f07..e353fac 100644 --- a/Dev/NOR/PHY/fs_dev_nor_at25.h +++ b/Dev/NOR/PHY/fs_dev_nor_at25.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ATMEL AT25 Serial NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_at25.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/fs_dev_nor_at45.c b/Dev/NOR/PHY/fs_dev_nor_at45.c index 56b73e7..2481c49 100644 --- a/Dev/NOR/PHY/fs_dev_nor_at45.c +++ b/Dev/NOR/PHY/fs_dev_nor_at45.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ATMEL AT45 SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_at45.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Support for binary page size (ie. 512, 1024... bytes pages) is not implemented. Contact * Micrium if this capability is required. diff --git a/Dev/NOR/PHY/fs_dev_nor_at45.h b/Dev/NOR/PHY/fs_dev_nor_at45.h index f948aa9..3f580c8 100644 --- a/Dev/NOR/PHY/fs_dev_nor_at45.h +++ b/Dev/NOR/PHY/fs_dev_nor_at45.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ATMEL AT45 SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_at45.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/fs_dev_nor_intel.c b/Dev/NOR/PHY/fs_dev_nor_intel.c index d29ffa1..a1b451e 100644 --- a/Dev/NOR/PHY/fs_dev_nor_intel.c +++ b/Dev/NOR/PHY/fs_dev_nor_intel.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * INTEL-COMPATIBLE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_intel.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports CFI NOR flash implementing Intel command set, including : * diff --git a/Dev/NOR/PHY/fs_dev_nor_intel.h b/Dev/NOR/PHY/fs_dev_nor_intel.h index c938546..4bc0124 100644 --- a/Dev/NOR/PHY/fs_dev_nor_intel.h +++ b/Dev/NOR/PHY/fs_dev_nor_intel.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * INTEL-COMPATIBLE NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_intel.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports CFI NOR flash implementing Intel command set, including : * diff --git a/Dev/NOR/PHY/fs_dev_nor_micron_np5q.c b/Dev/NOR/PHY/fs_dev_nor_micron_np5q.c index a708ad4..49575b6 100644 --- a/Dev/NOR/PHY/fs_dev_nor_micron_np5q.c +++ b/Dev/NOR/PHY/fs_dev_nor_micron_np5q.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * MICRON NP5Q SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_micron_np5q.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/fs_dev_nor_micron_np5q.h b/Dev/NOR/PHY/fs_dev_nor_micron_np5q.h index 1bfc20b..1c485e3 100644 --- a/Dev/NOR/PHY/fs_dev_nor_micron_np5q.h +++ b/Dev/NOR/PHY/fs_dev_nor_micron_np5q.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * MICRON NP5Q SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_np5q.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/PHY/fs_dev_nor_sst25.c b/Dev/NOR/PHY/fs_dev_nor_sst25.c index 6046f39..d9dc46b 100644 --- a/Dev/NOR/PHY/fs_dev_nor_sst25.c +++ b/Dev/NOR/PHY/fs_dev_nor_sst25.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * SST SST25 SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_sst25.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports SST's SST25 serial NOR flash memories, as described in various datasheets * at SST (http://www.sst.com). This driver has been tested with or should work with diff --git a/Dev/NOR/PHY/fs_dev_nor_sst25.h b/Dev/NOR/PHY/fs_dev_nor_sst25.h index d254d18..01da386 100644 --- a/Dev/NOR/PHY/fs_dev_nor_sst25.h +++ b/Dev/NOR/PHY/fs_dev_nor_sst25.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * SST SST25 SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_sst25.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports Numonyx/ST's M29 parallel NOR flash memories, as described in various * datasheets at Numonyx (http://www.numonyx.com). This driver has been tested with diff --git a/Dev/NOR/PHY/fs_dev_nor_sst39.c b/Dev/NOR/PHY/fs_dev_nor_sst39.c index c16b52c..82b2a5e 100644 --- a/Dev/NOR/PHY/fs_dev_nor_sst39.c +++ b/Dev/NOR/PHY/fs_dev_nor_sst39.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * SST SST39 NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_sst39.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports SST's SST39 Multi-Purpose Flash memories, as described in various * datasheets at SST (http://www.sst.com). This driver has been tested with or should diff --git a/Dev/NOR/PHY/fs_dev_nor_sst39.h b/Dev/NOR/PHY/fs_dev_nor_sst39.h index cb3c0d1..dd14132 100644 --- a/Dev/NOR/PHY/fs_dev_nor_sst39.h +++ b/Dev/NOR/PHY/fs_dev_nor_sst39.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * SST SST39 NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_sst39.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports SST's SST39 Multi-Purpose Flash memories, as described in various * datasheets at SST (http://www.sst.com). This driver has been tested with or should diff --git a/Dev/NOR/PHY/fs_dev_nor_stm25.c b/Dev/NOR/PHY/fs_dev_nor_stm25.c index 14e3c28..5ebfb51 100644 --- a/Dev/NOR/PHY/fs_dev_nor_stm25.c +++ b/Dev/NOR/PHY/fs_dev_nor_stm25.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ST MICROELECTRONICS M25 SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_stm25.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports Numonyx/ST's M25 & M45 serial NOR flash memories, as described in various * datasheets at Numonyx (http://www.numonyx.com). This driver has been tested with diff --git a/Dev/NOR/PHY/fs_dev_nor_stm25.h b/Dev/NOR/PHY/fs_dev_nor_stm25.h index 84f9cf7..63cabe5 100644 --- a/Dev/NOR/PHY/fs_dev_nor_stm25.h +++ b/Dev/NOR/PHY/fs_dev_nor_stm25.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ST MICROELECTRONICS M25 SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_stm25.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports Numonyx/ST's M25 & M45 serial NOR flash memories, as described in various * datasheets at Numonyx (http://www.numonyx.com). This driver has been tested with diff --git a/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.c b/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.c index b7a4a13..6af2dda 100644 --- a/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.c +++ b/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ST MICROELECTRONICS M29 NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_stm29_1x08.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports Numonyx/ST's M29 parallel NOR flash memories, as described in various * datasheets at Numonyx (http://www.numonyx.com). This driver has been tested with diff --git a/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.h b/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.h index 95eb97d..6840b07 100644 --- a/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.h +++ b/Dev/NOR/PHY/fs_dev_nor_stm29_1x08.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ST MICROELECTRONICS M29 NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_stm29_1x08.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports Numonyx/ST's M29 parallel NOR flash memories, as described in various * datasheets at Numonyx (http://www.numonyx.com). This driver has been tested with diff --git a/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.c b/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.c index 52369d8..db0f570 100644 --- a/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.c +++ b/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ST MICROELECTRONICS M29 NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_stm29_1x16.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports Numonyx/ST's M29 parallel NOR flash memories, as described in various * datasheets at Numonyx (http://www.numonyx.com). This driver has been tested with diff --git a/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.h b/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.h index f320248..12b1cfd 100644 --- a/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.h +++ b/Dev/NOR/PHY/fs_dev_nor_stm29_1x16.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * ST MICROELECTRONICS M29 NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_stm29_1x16.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports Numonyx/ST's M29 parallel NOR flash memories, as described in various * datasheets at Numonyx (http://www.numonyx.com). This driver has been tested with diff --git a/Dev/NOR/PHY/fs_dev_nor_w25q.c b/Dev/NOR/PHY/fs_dev_nor_w25q.c index d9558df..2208532 100644 --- a/Dev/NOR/PHY/fs_dev_nor_w25q.c +++ b/Dev/NOR/PHY/fs_dev_nor_w25q.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * WINBOND W25Q SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_w25q.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) With an appropriate BSP, this device NOR PHY layer will support the following * devices: diff --git a/Dev/NOR/PHY/fs_dev_nor_w25q.h b/Dev/NOR/PHY/fs_dev_nor_w25q.h index 71f4641..1c33df2 100644 --- a/Dev/NOR/PHY/fs_dev_nor_w25q.h +++ b/Dev/NOR/PHY/fs_dev_nor_w25q.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * WINBOND W25Q SERIAL NOR PHYSICAL-LAYER DRIVER * * Filename : fs_dev_nor_w25q.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/NOR/fs_dev_nor.c b/Dev/NOR/fs_dev_nor.c index d1f5f7e..9d383f7 100644 --- a/Dev/NOR/fs_dev_nor.c +++ b/Dev/NOR/fs_dev_nor.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * NOR FLASH DEVICES * * Filename : fs_dev_nor.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports NOR-type Flash memory devices, including : * (a) Parallel NOR Flash. diff --git a/Dev/NOR/fs_dev_nor.h b/Dev/NOR/fs_dev_nor.h index 5299229..ef435b9 100644 --- a/Dev/NOR/fs_dev_nor.h +++ b/Dev/NOR/fs_dev_nor.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * NOR FLASH DEVICES * * Filename : fs_dev_nor.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Supports NOR-type Flash memory devices, including : * (a) Parallel NOR Flash. diff --git a/Dev/RAMDisk/fs_dev_ramdisk.c b/Dev/RAMDisk/fs_dev_ramdisk.c index 00bda31..537f652 100644 --- a/Dev/RAMDisk/fs_dev_ramdisk.c +++ b/Dev/RAMDisk/fs_dev_ramdisk.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * RAM DISK * * Filename : fs_dev_ramdisk.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/RAMDisk/fs_dev_ramdisk.h b/Dev/RAMDisk/fs_dev_ramdisk.h index c8be964..6b48244 100644 --- a/Dev/RAMDisk/fs_dev_ramdisk.h +++ b/Dev/RAMDisk/fs_dev_ramdisk.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * RAM DISK * * Filename : fs_dev_ramdisk.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/SD/Card/BSP/Template/bsp_fs_dev_sd_card.c b/Dev/SD/Card/BSP/Template/bsp_fs_dev_sd_card.c index 4fc5b82..b7cffb4 100644 --- a/Dev/SD/Card/BSP/Template/bsp_fs_dev_sd_card.c +++ b/Dev/SD/Card/BSP/Template/bsp_fs_dev_sd_card.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE * * Filename : bsp_fs_dev_sd_card.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/SD/Card/fs_dev_sd_card.c b/Dev/SD/Card/fs_dev_sd_card.c index af62171..e04967e 100644 --- a/Dev/SD/Card/fs_dev_sd_card.c +++ b/Dev/SD/Card/fs_dev_sd_card.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * CARD MODE * * Filename : fs_dev_sd_card.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) SD Card Association. "Physical Layer Simplified Specification Version 2.00". * July 26, 2006. diff --git a/Dev/SD/Card/fs_dev_sd_card.h b/Dev/SD/Card/fs_dev_sd_card.h index 953a9b2..293a73e 100644 --- a/Dev/SD/Card/fs_dev_sd_card.h +++ b/Dev/SD/Card/fs_dev_sd_card.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * CARD MODE * * Filename : fs_dev_sd_card.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) SD Card Association. "Physical Layer Simplified Specification Version 2.00". * July 26, 2006. diff --git a/Dev/SD/SPI/BSP/Template (GPIO)/bsp_fs_dev_sd_spi.c b/Dev/SD/SPI/BSP/Template (GPIO)/bsp_fs_dev_sd_spi.c index cb643bd..edc603c 100644 --- a/Dev/SD/SPI/BSP/Template (GPIO)/bsp_fs_dev_sd_spi.c +++ b/Dev/SD/SPI/BSP/Template (GPIO)/bsp_fs_dev_sd_spi.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE (GPIO) * * Filename : bsp_fs_dev_sd_spi.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/SD/SPI/BSP/Template/bsp_fs_dev_sd_spi.c b/Dev/SD/SPI/BSP/Template/bsp_fs_dev_sd_spi.c index 84a6948..c347b6d 100644 --- a/Dev/SD/SPI/BSP/Template/bsp_fs_dev_sd_spi.c +++ b/Dev/SD/SPI/BSP/Template/bsp_fs_dev_sd_spi.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -24,7 +24,7 @@ * TEMPLATE * * Filename : bsp_fs_dev_sd_spi.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Dev/SD/SPI/fs_dev_sd_spi.c b/Dev/SD/SPI/fs_dev_sd_spi.c index d7c8157..1d527b0 100644 --- a/Dev/SD/SPI/fs_dev_sd_spi.c +++ b/Dev/SD/SPI/fs_dev_sd_spi.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * SPI MODE * * Filename : fs_dev_sd_spi.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) SD Card Association. "Physical Layer Simplified Specification Version 2.00". * July 26, 2006. diff --git a/Dev/SD/SPI/fs_dev_sd_spi.h b/Dev/SD/SPI/fs_dev_sd_spi.h index 003f5e3..638a488 100644 --- a/Dev/SD/SPI/fs_dev_sd_spi.h +++ b/Dev/SD/SPI/fs_dev_sd_spi.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * SPI MODE * * Filename : fs_dev_sd_spi.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) SD Card Association. "Physical Layer Simplified Specification Version 2.00". * July 26, 2006. diff --git a/Dev/SD/fs_dev_sd.c b/Dev/SD/fs_dev_sd.c index ece6340..da3f33b 100644 --- a/Dev/SD/fs_dev_sd.c +++ b/Dev/SD/fs_dev_sd.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * COMMON DEFINES & FUNCTIONS * * Filename : fs_dev_sd.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) SD Card Association. "Physical Layer Simplified Specification Version 2.00". * July 26, 2006. diff --git a/Dev/SD/fs_dev_sd.h b/Dev/SD/fs_dev_sd.h index 2f85496..78d1285 100644 --- a/Dev/SD/fs_dev_sd.h +++ b/Dev/SD/fs_dev_sd.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -23,7 +23,7 @@ * COMMON DEFINES & FUNCTIONS * * Filename : fs_dev_sd.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) SD Card Association. "Physical Layer Simplified Specification Version 2.00". * July 26, 2006. diff --git a/Dev/Template/fs_dev_template.c b/Dev/Template/fs_dev_template.c index 1bbdc01..62ed097 100644 --- a/Dev/Template/fs_dev_template.c +++ b/Dev/Template/fs_dev_template.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TEMPLATE * * Filename : fs_dev_template.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (a) Replace #### with the driver identifier (in the correct case). * (b) Replace $$$$ with code/definitions/etc. diff --git a/Dev/Template/fs_dev_template.h b/Dev/Template/fs_dev_template.h index c733549..f613690 100644 --- a/Dev/Template/fs_dev_template.h +++ b/Dev/Template/fs_dev_template.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TEMPLATE * * Filename : fs_dev_####.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (a) Replace #### with the driver identifier (in the correct case). * (b) Replace $$$$ with code/definitions/etc. diff --git a/FAT/fs_fat.c b/FAT/fs_fat.c index 20ed3b3..c6a4c19 100644 --- a/FAT/fs_fat.c +++ b/FAT/fs_fat.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM FAT MANAGEMENT * * Filename : fs_fat.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) Microsoft Corporation. "Microsoft Extensible Firmware Initiative, FAT32 File * System Specification." Version 1.03. December 6, 2000. diff --git a/FAT/fs_fat.h b/FAT/fs_fat.h index 12ced47..3fcfbfb 100644 --- a/FAT/fs_fat.h +++ b/FAT/fs_fat.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM FAT MANAGEMENT * * Filename : fs_fat.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_dir.c b/FAT/fs_fat_dir.c index 3725a7a..e14d9e3 100644 --- a/FAT/fs_fat_dir.c +++ b/FAT/fs_fat_dir.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * DIRECTORY ACCESS * * Filename : fs_fat_dir.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_dir.h b/FAT/fs_fat_dir.h index 6211f54..fb9b509 100644 --- a/FAT/fs_fat_dir.h +++ b/FAT/fs_fat_dir.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * DIRECTORY ACCESS * * Filename : fs_fat_dir.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_entry.c b/FAT/fs_fat_entry.c index c68d7cc..4a9dc91 100644 --- a/FAT/fs_fat_entry.c +++ b/FAT/fs_fat_entry.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * ENTRY ACCESS * * Filename : fs_fat_entry.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_entry.h b/FAT/fs_fat_entry.h index 393fe2d..a1d0c25 100644 --- a/FAT/fs_fat_entry.h +++ b/FAT/fs_fat_entry.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * ENTRY ACCESS * * Filename : fs_fat_entry.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_fat12.c b/FAT/fs_fat_fat12.c index aa3261c..71fff36 100644 --- a/FAT/fs_fat_fat12.c +++ b/FAT/fs_fat_fat12.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FAT12 SUPPORT * * Filename : fs_fat_fat12.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_fat12.h b/FAT/fs_fat_fat12.h index f32ce54..252e790 100644 --- a/FAT/fs_fat_fat12.h +++ b/FAT/fs_fat_fat12.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FAT12 SUPPORT * * Filename : fs_fat_fat12.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_fat16.c b/FAT/fs_fat_fat16.c index 48f0829..6410fc3 100644 --- a/FAT/fs_fat_fat16.c +++ b/FAT/fs_fat_fat16.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FAT16 SUPPORT * * Filename : fs_fat_fat16.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_fat16.h b/FAT/fs_fat_fat16.h index 0f9988f..6f5ac69 100644 --- a/FAT/fs_fat_fat16.h +++ b/FAT/fs_fat_fat16.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FAT16 SUPPORT * * Filename : fs_fat_fat16.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_fat32.c b/FAT/fs_fat_fat32.c index 71bcb25..e6d7e33 100644 --- a/FAT/fs_fat_fat32.c +++ b/FAT/fs_fat_fat32.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FAT32 SUPPORT * * Filename : fs_fat_fat32.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_fat32.h b/FAT/fs_fat_fat32.h index fd695e4..6dcd668 100644 --- a/FAT/fs_fat_fat32.h +++ b/FAT/fs_fat_fat32.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FAT32 SUPPORT * * Filename : fs_fat_fat32.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_file.c b/FAT/fs_fat_file.c index c4aa087..5938716 100644 --- a/FAT/fs_fat_file.c +++ b/FAT/fs_fat_file.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FILE ACCESS * * Filename : fs_fat_file.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_file.h b/FAT/fs_fat_file.h index 17dcb08..31ff243 100644 --- a/FAT/fs_fat_file.h +++ b/FAT/fs_fat_file.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * FILE ACCESS * * Filename : fs_fat_file.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_journal.c b/FAT/fs_fat_journal.c index 0608b68..7450a65 100644 --- a/FAT/fs_fat_journal.c +++ b/FAT/fs_fat_journal.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * JOURNALING * * Filename : fs_fat_journal.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_journal.h b/FAT/fs_fat_journal.h index 40de241..d5a0b68 100644 --- a/FAT/fs_fat_journal.h +++ b/FAT/fs_fat_journal.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * JOURNALING * * Filename : fs_fat_journal.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_lfn.c b/FAT/fs_fat_lfn.c index 39fd3ee..5458fe2 100644 --- a/FAT/fs_fat_lfn.c +++ b/FAT/fs_fat_lfn.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * LONG FILE NAME SUPPORT * * Filename : fs_fat_lfn.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_lfn.h b/FAT/fs_fat_lfn.h index ef6b378..6fbe1e6 100644 --- a/FAT/fs_fat_lfn.h +++ b/FAT/fs_fat_lfn.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * LONG FILE NAME SUPPORT * * Filename : fs_fat_lfn.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_sfn.c b/FAT/fs_fat_sfn.c index c857be9..c7edebc 100644 --- a/FAT/fs_fat_sfn.c +++ b/FAT/fs_fat_sfn.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * SHORT FILE NAME SUPPORT * * Filename : fs_fat_sfn.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_sfn.h b/FAT/fs_fat_sfn.h index ee25e0e..66e3e4e 100644 --- a/FAT/fs_fat_sfn.h +++ b/FAT/fs_fat_sfn.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * SHORT FILE NAME SUPPORT * * Filename : fs_fat_sfn.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/FAT/fs_fat_type.h b/FAT/fs_fat_type.h index f96573b..49c288e 100644 --- a/FAT/fs_fat_type.h +++ b/FAT/fs_fat_type.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TYPES * * Filename : fs_fat_type.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/OS/None/fs_os.c b/OS/None/fs_os.c index a3537c0..d289cb9 100644 --- a/OS/None/fs_os.c +++ b/OS/None/fs_os.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * No OS * * Filename : fs_os.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/OS/None/fs_os.h b/OS/None/fs_os.h index fb389b6..ef4beda 100644 --- a/OS/None/fs_os.h +++ b/OS/None/fs_os.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * No OS * * Filename : fs_os.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/OS/Template/fs_os.c b/OS/Template/fs_os.c index 4d028bd..bc7f4b5 100644 --- a/OS/Template/fs_os.c +++ b/OS/Template/fs_os.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TEMPLATE * * Filename : fs_os.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/OS/Template/fs_os.h b/OS/Template/fs_os.h index 0cd3810..02956d0 100644 --- a/OS/Template/fs_os.h +++ b/OS/Template/fs_os.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * TEMPLATE * * Filename : fs_os.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/OS/uCOS-II/fs_os.c b/OS/uCOS-II/fs_os.c index 0bc7d7a..1f3d1da 100644 --- a/OS/uCOS-II/fs_os.c +++ b/OS/uCOS-II/fs_os.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * Micrium uC/OS-II * * Filename : fs_os.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Assumes uC/OS-II V2.89 is included in the project build. * diff --git a/OS/uCOS-II/fs_os.h b/OS/uCOS-II/fs_os.h index 7d249e9..1503659 100644 --- a/OS/uCOS-II/fs_os.h +++ b/OS/uCOS-II/fs_os.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * Micrium uC/OS-II * * Filename : fs_os.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Assumes uC/OS-II V2.89 is included in the project build. * diff --git a/OS/uCOS-III/fs_os.c b/OS/uCOS-III/fs_os.c index 8649f61..a459bec 100644 --- a/OS/uCOS-III/fs_os.c +++ b/OS/uCOS-III/fs_os.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * Micrium uC/OS-III * * Filename : fs_os.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Assumes uC/OS-III V3.03.01 is included in the project build. * diff --git a/OS/uCOS-III/fs_os.h b/OS/uCOS-III/fs_os.h index 4ba0004..e4dc557 100644 --- a/OS/uCOS-III/fs_os.h +++ b/OS/uCOS-III/fs_os.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * Micrium uC/OS-III * * Filename : fs_os.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) Assumes uC/OS-III V3.03.01 is included in the project build. * diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..a75ea7e --- /dev/null +++ b/README.rst @@ -0,0 +1,45 @@ +.. raw:: html + + +

+ +

+
+ +µC/OS is a full-featured embedded operating system originally developed by Micriµm™. In addition to the two highly popular kernels, µC/OS features support for TCP/IP, USB-Device, USB-Host, and Modbus, as well as a robust File System. + +Since its founding in 1999 as a private company, Micriµm and its team of engineers have offered world-class embedded software components for the most critical and demanding real-time applications. Recognized as having some of the cleanest code in the industry, with easy-to-understand documentation, the Micrium real-time kernels, and software components have successfully been deployed in thousands of products worldwide across a broad range of industries. Micrium’s µC/OS-II™ kernel has been certified for use in safety-critical applications and remains a respected favorite in the medical, aerospace, and industrial markets. µC/OS continues to be the RTOS of choice for engineers requiring the most reliable and trusted solution for their mission-critical applications. + +---------- + +.. raw:: HTML + + +

+ +

+
+ +Founded by a team of former Micrium employees, Weston Embedded Solutions is the official custodian for the µC/OS RTOS and Stacks software repository to ensure it remains the trusted choice for embedded engineers around the world. + +---------- + +Product Documentation and Release Notes +*************** +https://micrium.atlassian.net/ + +Technical Support +***************** +https://weston-embedded.com/micrium-support + +Example Projects +********* +https://weston-embedded.com/micrium-examples + +Commercial Licensing Option +********* +https://weston-embedded.com/products/cesium + +Who to Contact +********* +https://weston-embedded.com/company/contact \ No newline at end of file diff --git a/Source/fs.c b/Source/fs.c index db5e7a8..01ffe6b 100644 --- a/Source/fs.c +++ b/Source/fs.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SOURCE FILE * * Filename : fs.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs.h b/Source/fs.h index 6d9d0f9..61955f4 100644 --- a/Source/fs.h +++ b/Source/fs.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE HEADER FILE * * Filename : fs.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ @@ -61,7 +61,7 @@ ********************************************************************************************************* */ -#define FS_VERSION 40800u /* See Note #1. */ +#define FS_VERSION 40801u /* See Note #1. */ /* diff --git a/Source/fs_api.c b/Source/fs_api.c index 9c24a47..332b527 100644 --- a/Source/fs_api.c +++ b/Source/fs_api.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * POSIX API FUNCTIONS * * Filename : fs_api.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Notice(s) : (1) The Institute of Electrical and Electronics Engineers and The Open Group, have given * us permission to reprint portions of their documentation. Portions of this text are diff --git a/Source/fs_api.h b/Source/fs_api.h index 4c473bd..103587c 100644 --- a/Source/fs_api.h +++ b/Source/fs_api.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -22,7 +22,7 @@ * POSIX API FUNCTIONS * * Filename : fs_api.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Notice(s) : (1) The Institute of Electrical and Electronics Engineers and The Open Group, have given * us permission to reprint portions of their documentation. Portions of this text are diff --git a/Source/fs_buf.c b/Source/fs_buf.c index ba4eaae..fabbf11 100644 --- a/Source/fs_buf.c +++ b/Source/fs_buf.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM BUFFER MANAGEMENT * * Filename : fs_buf.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_buf.h b/Source/fs_buf.h index 9635f7c..80fe0cd 100644 --- a/Source/fs_buf.h +++ b/Source/fs_buf.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM BUFFER MANAGEMENT * * Filename : fs_buf.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_cache.c b/Source/fs_cache.c index 89db044..0140e1b 100644 --- a/Source/fs_cache.c +++ b/Source/fs_cache.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE CACHE MANAGEMENT * * Filename : fs_cache.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_cache.h b/Source/fs_cache.h index 94780d0..cdeed1a 100644 --- a/Source/fs_cache.h +++ b/Source/fs_cache.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE CACHE MANAGEMENT * * Filename : fs_cache.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_cfg_fs.h b/Source/fs_cfg_fs.h index 59ab3ca..d20ad1b 100644 --- a/Source/fs_cfg_fs.h +++ b/Source/fs_cfg_fs.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM CONFIGURATION * * Filename : fs_cfg_fs.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_ctr.h b/Source/fs_ctr.h index b9ee25e..e85801f 100644 --- a/Source/fs_ctr.h +++ b/Source/fs_ctr.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM COUNTER MANAGEMENT * * Filename : fs_ctr.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_def.h b/Source/fs_def.h index 38ebe19..a62f028 100644 --- a/Source/fs_def.h +++ b/Source/fs_def.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM DEFINES * * Filename : fs_def.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_dev.c b/Source/fs_dev.c index 36d5ef3..94499f5 100644 --- a/Source/fs_dev.c +++ b/Source/fs_dev.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE DEVICE MANAGEMENT * * Filename : fs_dev.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_dev.h b/Source/fs_dev.h index 5257d2e..f10815f 100644 --- a/Source/fs_dev.h +++ b/Source/fs_dev.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE DEVICE MANAGEMENT * * Filename : fs_dev.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_dir.c b/Source/fs_dir.c index de0b313..f840ab0 100644 --- a/Source/fs_dir.c +++ b/Source/fs_dir.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM DIRECTORY MANAGEMENT * * Filename : fs_dir.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_dir.h b/Source/fs_dir.h index b5b30f2..65f72c5 100644 --- a/Source/fs_dir.h +++ b/Source/fs_dir.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM DIRECTORY MANAGEMENT * * Filename : fs_dir.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_entry.c b/Source/fs_entry.c index 4419457..f4f8b95 100644 --- a/Source/fs_entry.c +++ b/Source/fs_entry.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM ENTRY ACCESS * * Filename : fs_entry.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_entry.h b/Source/fs_entry.h index 4a26224..5983146 100644 --- a/Source/fs_entry.h +++ b/Source/fs_entry.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM ENTRY ACCESS * * Filename : fs_entry.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_err.h b/Source/fs_err.h index 06ee000..a4e1715 100644 --- a/Source/fs_err.h +++ b/Source/fs_err.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM ERROR CODE MANAGEMENT * * Filename : fs_err.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_file.c b/Source/fs_file.c index 1ef8109..1fc44ea 100644 --- a/Source/fs_file.c +++ b/Source/fs_file.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE FILE MANAGEMENT * * Filename : fs_file.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_file.h b/Source/fs_file.h index 1c54cb5..483d661 100644 --- a/Source/fs_file.h +++ b/Source/fs_file.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE FILE MANAGEMENT * * Filename : fs_file.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_partition.c b/Source/fs_partition.c index 4df5c49..d84b706 100644 --- a/Source/fs_partition.c +++ b/Source/fs_partition.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE PARTITION MANAGEMENT * * Filename : fs_partition.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Reference(s) : (1) Carrier, Brian. "File System Forensic Analysis." NJ: Addison-Wesley, 2005. ********************************************************************************************************* diff --git a/Source/fs_partition.h b/Source/fs_partition.h index 437aa47..47d14a8 100644 --- a/Source/fs_partition.h +++ b/Source/fs_partition.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE PARTITION MANAGEMENT * * Filename : fs_partition.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_sys.c b/Source/fs_sys.c index 4141700..39e67e6 100644 --- a/Source/fs_sys.c +++ b/Source/fs_sys.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SYSTEM DRIVER MANAGEMENT * * Filename : fs_sys.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Note(s) : (1) The available system driver is known at compile time : * diff --git a/Source/fs_sys.h b/Source/fs_sys.h index 67bb6f8..725ee7e 100644 --- a/Source/fs_sys.h +++ b/Source/fs_sys.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SYSTEM DRIVER MANAGEMENT * * Filename : fs_sys.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_type.h b/Source/fs_type.h index f35791d..4890930 100644 --- a/Source/fs_type.h +++ b/Source/fs_type.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM TYPES * * Filename : fs_type.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_unicode.c b/Source/fs_unicode.c index b81e0be..f2856d9 100644 --- a/Source/fs_unicode.c +++ b/Source/fs_unicode.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * UNICODE STRING MANAGEMENT * * Filename : fs_unicode.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* * Notice(s) : (1) The Institute of Electrical and Electronics Engineers and The Open Group, have given * us permission to reprint portions of their documentation. Portions of this text are diff --git a/Source/fs_unicode.h b/Source/fs_unicode.h index e301ad6..97f6ea8 100644 --- a/Source/fs_unicode.h +++ b/Source/fs_unicode.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * UNICODE STRING MANAGEMENT * * Filename : fs_unicode.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_util.c b/Source/fs_util.c index 4a151a5..2d31533 100644 --- a/Source/fs_util.c +++ b/Source/fs_util.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE UTILITY LIBRARY * * Filename : fs_util.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_util.h b/Source/fs_util.h index 6f24e54..5b73ace 100644 --- a/Source/fs_util.h +++ b/Source/fs_util.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE UTILITY LIBRARY * * Filename : fs_util.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_vol.c b/Source/fs_vol.c index 9383edc..fd9ba76 100644 --- a/Source/fs_vol.c +++ b/Source/fs_vol.c @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE VOLUME MANAGEMENT * * Filename : fs_vol.c -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/Source/fs_vol.h b/Source/fs_vol.h index 6233a47..560c948 100644 --- a/Source/fs_vol.h +++ b/Source/fs_vol.h @@ -3,7 +3,7 @@ * uC/FS * The Embedded File System * -* Copyright 2008-2020 Silicon Laboratories Inc. www.silabs.com +* Copyright 2008-2021 Silicon Laboratories Inc. www.silabs.com * * SPDX-License-Identifier: APACHE-2.0 * @@ -20,7 +20,7 @@ * FILE SYSTEM SUITE VOLUME MANAGEMENT * * Filename : fs_vol.h -* Version : V4.08.00 +* Version : V4.08.01 ********************************************************************************************************* */ diff --git a/readme.md b/readme.md deleted file mode 100644 index af52c1c..0000000 --- a/readme.md +++ /dev/null @@ -1,5 +0,0 @@ -# uC/FS - -μC/FS is a compact, reliable, high-performance and thread-safe embedded file system for microprocessors, microcontrollers and DSPs. - -## For the complete documentation, visit https://doc.micrium.com/display/ucos/ \ No newline at end of file