1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-11 22:24:13 +01:00
Arduino/wifiHD/src/console.c
2011-12-30 16:59:50 +01:00

199 lines
6.1 KiB
C

/* This source file is part of the ATMEL AVR-UC3-SoftwareFramework-1.7.0 Release */
/*! \page License
* Copyright (C) 2009, H&D Wireless AB 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. The name of H&D Wireless AB may not be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY H&D WIRELESS AB ``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 EXPRESSLY AND
* SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL 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.
*/
#include <avr32/io.h>
#include "compiler.h"
#include "board.h"
#include "power_clocks_lib.h"
#include "gpio.h"
#include "usart.h"
#include "printf-stdarg.h"
#include <string.h>
#include "console.h"
struct {
cmd_cb_t cb;
const char* str;
void* ctx;
} cmd_list[16] = { { 0 } };
#define ARRAY_SIZE(a) sizeof(a) / sizeof(a[0])
#if BOARD == EVK1104 || BOARD == EVK1100 || BOARD == EVK1101 || BOARD ==ARDUINO
#define AVR32_USART AVR32_USART1
#elif BOARD == EVK1105
#define AVR32_USART AVR32_USART0
#else
#error
#endif
#ifndef CMD_MAX_LEN
#define CMD_MAX_LEN 80
#endif
static Bool is_initialized = FALSE;
char* console_gets()
{
static char buf[CMD_MAX_LEN];
static int pos = 0;
int c;
int status;
for (;;) {
status = usart_read_char(&AVR32_USART, &c);
if (status == USART_RX_EMPTY)
return NULL;
if (status == USART_RX_ERROR) {
AVR32_USART.cr = AVR32_USART_CR_RSTSTA_MASK;
return NULL;
}
if (c == '\r') {
usart_putchar(&AVR32_USART, '\n');
buf[pos] = 0;
pos = 0;
return buf;
}
usart_putchar(&AVR32_USART, c);
buf[pos++] = c;
if (pos == sizeof(buf))
pos = 0;
}
return NULL;
}
int console_add_cmd(const char* str, cmd_cb_t cb, void* ctx)
{
U32 i;
for (i = 0; i < ARRAY_SIZE(cmd_list); i++)
if (!cmd_list[i].cb)
break;
if (i == ARRAY_SIZE(cmd_list))
return -1;
cmd_list[i].str = str;
cmd_list[i].cb = cb;
cmd_list[i].ctx = ctx;
return 0;
}
void console_init(void)
{
printk("\n$ ");
is_initialized = TRUE;
}
void console_init_silent(void) {
is_initialized = TRUE;
}
int console_schedule_cmd(char *cmd, int interactive) {
#define MAX_ARGS 8
static int argc, i;
static char* argv[MAX_ARGS];
static char *buf;
static enum { INPUT, RUN } state = INPUT;
switch (state) {
case INPUT: {
char* token;
if (NULL == cmd) {
return 0;
}
buf = strdup(cmd);
if (!buf)
return 0;
if (!strlen(buf)) {
interactive ? printk("$ ") : 0;
free(buf);
return 0;
}
#ifdef WIFI_DEBUG_ON
printk("%s : Scheduling command \"%s\"\n",
__func__,
buf);
#endif
for (i = 0; i < ARRAY_SIZE(cmd_list); i++)
if(!strncmp(cmd_list[i].str, buf, 2))
break;
if (ARRAY_SIZE(cmd_list) == 0) {
printk("No commands available. Is the WiFi card responding?\n");
}
if (i == ARRAY_SIZE(cmd_list)) {
if (interactive) {
printk("available commands:\n");
for (i = 0; i < ARRAY_SIZE(cmd_list); i++)
if (cmd_list[i].cb)
printk(" %s\n", cmd_list[i].str);
printk("$ ");
}
free(buf);
return 0;
}
for (token = strtok(buf, " "); token != NULL;
token = strtok(NULL, " ")) {
argv[argc] = token;
argc++;
if (argc == MAX_ARGS)
break;
}
state = RUN;
} /* fall through */
case RUN: {
cmd_state_t s = cmd_list[i].cb(argc, argv, cmd_list[i].ctx);
if (s == CMD_INPROGRESS)
return 1;
interactive ? printk("$ ") : 0;
argc = 0;
free(buf);
state = INPUT;
}
}
return 1;
}
void console_poll(void)
{
char *buf;
buf = console_gets();
console_schedule_cmd(buf, 1);
}