summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-09-25 20:44:18 +0700
committerhathach <[email protected]>2013-09-25 20:44:18 +0700
commitb995e25308cb51b9353e7d86faaf44e36c552b67 (patch)
treead203375e0367a1cb47a1b71addf68927ad7b2c0 /demos
parent89898acd5d7e0551a89e90affde5502504af720c (diff)
enable long filename
Diffstat (limited to 'demos')
-rw-r--r--demos/bsp/boards/ansi_escape.h102
-rw-r--r--demos/host/src/cli.c16
2 files changed, 113 insertions, 5 deletions
diff --git a/demos/bsp/boards/ansi_escape.h b/demos/bsp/boards/ansi_escape.h
new file mode 100644
index 000000000..98bf1db78
--- /dev/null
+++ b/demos/bsp/boards/ansi_escape.h
@@ -0,0 +1,102 @@
+/**************************************************************************/
+/*!
+ @file ansi_esc_code.h
+ @author hathach (tinyusb.org)
+
+ @section LICENSE
+
+ Software License Agreement (BSD License)
+
+ Copyright (c) 2013, hathach (tinyusb.org)
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the copyright holders nor the
+ names of its contributors may be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ This file is part of the tinyusb stack.
+*/
+/**************************************************************************/
+
+/** \file
+ * \brief TBD
+ *
+ * \note TBD
+ */
+
+/** \ingroup TBD
+ * \defgroup TBD
+ * \brief TBD
+ *
+ * @{
+ */
+
+#ifndef _TUSB_ANSI_ESC_CODE_H_
+#define _TUSB_ANSI_ESC_CODE_H_
+
+
+#ifdef __cplusplus
+ extern "C" {
+#endif
+
+#define CSI_CODE(seq) "\33[" seq
+#define CSI_SGR(x) CSI_CODE(#x) "m"
+
+//------------- Cursor movement -------------//
+#define ANSI_CURSOR_UP(n) CSI_CODE(#n "A")
+#define ANSI_CURSOR_DOWN(n) CSI_CODE(#n "B")
+#define ANSI_CURSOR_FORWARD(n) CSI_CODE(#n "C")
+#define ANSI_CURSOR_BACKWARD(n) CSI_CODE(#n "D")
+#define ANSI_CURSOR_LINE_DOWN(n) CSI_CODE(#n "E")
+#define ANSI_CURSOR_LINE_UP(n) CSI_CODE(#n "F")
+
+#define ANSI_ERASE_SCREEN(n) CSI_CODE(#n "J")
+#define ANSI_ERASE_LINE(n) CSI_CODE(#n "K")
+
+/** text color */
+#define ANSI_TEXT_BLACK CSI_SGR(30)
+#define ANSI_TEXT_RED CSI_SGR(31)
+#define ANSI_TEXT_GREEN CSI_SGR(32)
+#define ANSI_TEXT_YELLOW CSI_SGR(33)
+#define ANSI_TEXT_BLUE CSI_SGR(34)
+#define ANSI_TEXT_MAGENTA CSI_SGR(35)
+#define ANSI_TEXT_CYAN CSI_SGR(36)
+#define ANSI_TEXT_WHITE CSI_SGR(37)
+#define ANSI_TEXT_DEFAULT CSI_SGR(39)
+
+/** background color */
+#define ANSI_BG_BLACK CSI_SGR(40)
+#define ANSI_BG_RED CSI_SGR(41)
+#define ANSI_BG_GREEN CSI_SGR(42)
+#define ANSI_BG_YELLOW CSI_SGR(43)
+#define ANSI_BG_BLUE CSI_SGR(44)
+#define ANSI_BG_MAGENTA CSI_SGR(45)
+#define ANSI_BG_CYAN CSI_SGR(46)
+#define ANSI_BG_WHITE CSI_SGR(47)
+#define ANSI_BG_DEFAULT CSI_SGR(49)
+
+#ifdef __cplusplus
+ }
+#endif
+
+#endif /* _TUSB_ANSI_ESC_CODE_H_ */
+
+/** @} */
diff --git a/demos/host/src/cli.c b/demos/host/src/cli.c
index bd45da9ed..186e018d9 100644
--- a/demos/host/src/cli.c
+++ b/demos/host/src/cli.c
@@ -41,6 +41,7 @@
#include "ff.h"
#include "diskio.h"
+#include "boards/ansi_escape.h"
// command, function, description
#define CLI_COMMAND_TABLE(ENTRY) \
@@ -135,8 +136,7 @@ void cli_poll(char ch)
}
else if ( ch == ASCII_BACKSPACE && strlen(cli_buffer))
{
- printf("\33[1D"); // move curback
- printf("\33[0K"); // clear to the end of line
+ printf(ANSI_CURSOR_BACKWARD(1) ANSI_ERASE_LINE(0) ); // move cursor back & clear to the end of line
cli_buffer[ strlen(cli_buffer)-1 ] = 0;
}
else if ( ch == '\r')
@@ -203,13 +203,19 @@ tusb_error_t cli_cmd_list(const char * p_para)
{
ASSERT_INT( FR_OK, f_opendir(&target_dir, "."), TUSB_ERROR_FAILED) ;
- FILINFO dir_entry;
+ TCHAR long_filename[_MAX_LFN];
+ FILINFO dir_entry =
+ {
+ .lfname = long_filename,
+ .lfsize = _MAX_LFN
+ };
while( (f_readdir(&target_dir, &dir_entry) == FR_OK) && dir_entry.fname[0] != 0)
{
if ( dir_entry.fname[0] != '.' ) // ignore . and .. entry
{
- printf("%s%c\n", dir_entry.fname,
- dir_entry.fattrib & AM_DIR ? '/' : ' ');
+ printf("%s%c\n",
+ (dir_entry.lfname[0] != 0) ? dir_entry.lfname : dir_entry.fname,
+ dir_entry.fattrib & AM_DIR ? '/' : ' ');
}
}
}