12半音階によるトーン生成
Rev. | 05c64c80a10b324b375562a6070f403efa4d0028 |
---|---|
大小 | 3,113 字节 |
时间 | 2013-06-03 23:41:51 |
作者 | suikan |
Log Message | 最初のコミット |
/**
* @file ntshell_task.c
* @author Shinichiro Nakamura
* @brief NT-Shellタスク。
* @details
*/
/*
* ===============================================================
* Natural Tiny Shell (NT-Shell)
* ===============================================================
* Copyright (c) 2010-2012 Shinichiro Nakamura
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
* ===============================================================
*/
#include <t_services.h>
#include "ntshell_task.h"
#include "ntlibc.h"
#include "ntshell.h"
#include "ntstdio.h"
#include "ntopt.h"
#include "cmd.h"
#define SERIAL_PORT_ID (1)
static cmd_env_t cmd_env;
static int func_read(char *buf, int cnt, void *extobj)
{
int i;
for (i = 0; i < cnt; i++) {
char c;
syscall(serial_rea_dat(SERIAL_PORT_ID, &c, 1));
buf[i] = c;
}
return cnt;
}
static int func_write(const char *buf, int cnt, void *extobj)
{
int i;
for (i = 0; i < cnt; i++) {
char c = buf[i];
syscall(serial_wri_dat(SERIAL_PORT_ID, &c, 1));
}
return cnt;
}
static void uxo(unsigned char c)
{
syscall(serial_wri_dat(SERIAL_PORT_ID, (char *)&c, 1));
}
static unsigned char uxi(void)
{
char c;
syscall(serial_rea_dat(SERIAL_PORT_ID, &c, 1));
return c;
}
int ntopt_callback(int argc, char **argv, void *extobj)
{
cmd_env_t *env = (cmd_env_t *)extobj;
cmd_execute(env, argc, argv);
return 0;
}
static int ntshell_callback(const char *text, void *extobj)
{
if (ntlibc_strlen(text) > 0) {
ntopt_parse(text, ntopt_callback, extobj);
}
return 0;
}
void ntshell_task(VP_INT exinf)
{
syscall(
serial_ctl_por(SERIAL_PORT_ID,
(IOCTL_CRLF | IOCTL_FCSND | IOCTL_FCRCV))
);
ntstdio_init(&(cmd_env.ntstdio), (NTSTDIO_OPTION_CR_CRLF | NTSTDIO_OPTION_LINE_ECHO), uxi, uxo);
ntshell_init(&(cmd_env.ntshell), func_read, func_write, ntshell_callback, (void *)&cmd_env);
ntshell_set_prompt(&(cmd_env.ntshell), "UZUME>");
ntshell_execute(&(cmd_env.ntshell));
}