Configuration

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_ENEnable/disable fs_cat.
FS_FAT_CFG_CMD_CD_ENEnable/disable fs_cd.
FS_FAT_CFG_CMD_CP_ENEnable/disable fs_cp.
FS_FAT_CFG_CMD_DF_ENEnable/disable fs_df.
FS_FAT_CFG_CMD_DATE_ENEnable/disable fs_date.
FS_FAT_CFG_CMD_LS_ENEnable/disable fs_ls.
FS_FAT_CFG_CMD_MKDIR_ENEnable/disable fs_mkdir.
FS_FAT_CFG_CMD_MKFS_ENEnable/disable fs_mkfs.
FS_FAT_CFG_CMD_MOUNT_ENEnable/disable fs_mount.
FS_FAT_CFG_CMD_MV_ENEnable/disable fs_mv.
FS_FAT_CFG_CMD_OD_ENEnable/disable fs_od.
FS_FAT_CFG_CMD_PWD_ENEnable/disable fs_pwd.
FS_FAT_CFG_CMD_RM_ENEnable/disable fs_rm.
FS_FAT_CFG_CMD_RMDIR_ENEnable/disable fs_rmdir.
FS_FAT_CFG_CMD_TOUCH_ENEnable/disable fs_touch.
FS_FAT_CFG_CMD_UMOUNT_ENEnable/disable fs_umount.
FS_FAT_CFG_CMD_WC_ENEnable/disable fs_wc.