Configuration constants can be used to enable/disable features within the µC/FS shell commands.
FS_SHELL_CFG_BUF_LEN
FS_FAT_CFG_BUF_LEN
defines the length of the buffer, in octets, used to read/write from files during file access operations. Since this buffer is placed on the task stack, the task stack must be sized appropraitely.
FS_SHELL_CFG_CMD_####_EN
Each FS_FAT_CFG_CMD_####_EN
separately enables/disables a particular fs_####
command:
FS_FAT_CFG_CMD_CAT_EN
Enable/disable fs_cat
.
FS_FAT_CFG_CMD_CD_EN
Enable/disable fs_cd
.
FS_FAT_CFG_CMD_CP_EN
Enable/disable fs_cp
.
FS_FAT_CFG_CMD_DF_EN
Enable/disable fs_df
.
FS_FAT_CFG_CMD_DATE_EN
Enable/disable fs_date
.
FS_FAT_CFG_CMD_LS_EN
Enable/disable fs_ls
.
FS_FAT_CFG_CMD_MKDIR_EN
Enable/disable fs_mkdir
.
FS_FAT_CFG_CMD_MKFS_EN
Enable/disable fs_mkfs
.
FS_FAT_CFG_CMD_MOUNT_EN
Enable/disable fs_mount
.
FS_FAT_CFG_CMD_MV_EN
Enable/disable fs_mv
.
FS_FAT_CFG_CMD_OD_EN
Enable/disable fs_od
.
FS_FAT_CFG_CMD_PWD_EN
Enable/disable fs_pwd
.
FS_FAT_CFG_CMD_RM_EN
Enable/disable fs_rm
.
FS_FAT_CFG_CMD_RMDIR_EN
Enable/disable fs_rmdir
.
FS_FAT_CFG_CMD_TOUCH_EN
Enable/disable fs_touch
.
FS_FAT_CFG_CMD_UMOUNT_EN
Enable/disable fs_umount
.
FS_FAT_CFG_CMD_WC_EN
Enable/disable fs_wc
.