2009-12-08 21:38:05 +00:00
|
|
|
/*
|
2013-03-30 10:32:37 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
|
2009-12-08 21:38:05 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2009-12-08 21:38:05 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2009-12-08 21:38:05 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2009-12-08 21:38:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file console.c
|
|
|
|
* @brief Simulator console driver code.
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "console.h"
|
|
|
|
|
2009-12-29 12:42:31 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-12-08 21:38:05 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Console driver 1.
|
2009-12-08 21:38:05 +00:00
|
|
|
*/
|
|
|
|
BaseChannel CD1;
|
|
|
|
|
2009-12-29 12:42:31 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-01-06 10:30:01 +00:00
|
|
|
|
|
|
|
static size_t writes(void *ip, const uint8_t *bp, size_t n) {
|
2010-01-06 12:55:12 +00:00
|
|
|
size_t ret;
|
2010-01-06 10:30:01 +00:00
|
|
|
|
|
|
|
(void)ip;
|
2010-01-06 12:55:12 +00:00
|
|
|
ret = fwrite(bp, 1, n, stdout);
|
|
|
|
fflush(stdout);
|
|
|
|
return ret;
|
2010-01-06 10:30:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static size_t reads(void *ip, uint8_t *bp, size_t n) {
|
|
|
|
|
|
|
|
(void)ip;
|
|
|
|
return fread(bp, 1, n, stdin);
|
|
|
|
}
|
|
|
|
|
2009-12-08 21:38:05 +00:00
|
|
|
static bool_t putwouldblock(void *ip) {
|
|
|
|
|
|
|
|
(void)ip;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool_t getwouldblock(void *ip) {
|
|
|
|
|
|
|
|
(void)ip;
|
2009-12-09 20:29:28 +00:00
|
|
|
return TRUE;
|
2009-12-08 21:38:05 +00:00
|
|
|
}
|
|
|
|
|
2010-01-06 10:30:01 +00:00
|
|
|
static msg_t putt(void *ip, uint8_t b, systime_t time) {
|
2009-12-08 21:38:05 +00:00
|
|
|
|
|
|
|
(void)ip;
|
2010-01-06 10:30:01 +00:00
|
|
|
(void)time;
|
2009-12-08 21:38:05 +00:00
|
|
|
fputc(b, stdout);
|
|
|
|
fflush(stdout);
|
|
|
|
return RDY_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-06 10:30:01 +00:00
|
|
|
static msg_t gett(void *ip, systime_t time) {
|
2009-12-08 21:38:05 +00:00
|
|
|
|
|
|
|
(void)ip;
|
2010-01-06 10:30:01 +00:00
|
|
|
(void)time;
|
2009-12-09 20:29:28 +00:00
|
|
|
return fgetc(stdin);
|
2009-12-08 21:38:05 +00:00
|
|
|
}
|
|
|
|
|
2010-01-06 10:30:01 +00:00
|
|
|
static size_t writet(void *ip, const uint8_t *bp, size_t n, systime_t time) {
|
2010-01-06 12:55:12 +00:00
|
|
|
size_t ret;
|
2010-01-06 10:30:01 +00:00
|
|
|
|
|
|
|
(void)ip;
|
|
|
|
(void)time;
|
2010-01-06 12:55:12 +00:00
|
|
|
ret = fwrite(bp, 1, n, stdout);
|
|
|
|
fflush(stdout);
|
|
|
|
return ret;
|
2010-01-06 10:30:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static size_t readt(void *ip, uint8_t *bp, size_t n, systime_t time) {
|
|
|
|
|
|
|
|
(void)ip;
|
|
|
|
(void)time;
|
|
|
|
return fread(bp, 1, n, stdin);
|
|
|
|
}
|
|
|
|
|
2009-12-08 21:38:05 +00:00
|
|
|
static const struct BaseChannelVMT vmt = {
|
2010-02-12 18:51:48 +00:00
|
|
|
writes, reads, putwouldblock, getwouldblock, putt, gett, writet, readt
|
2009-12-08 21:38:05 +00:00
|
|
|
};
|
|
|
|
|
2009-12-29 12:42:31 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver interrupt handlers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-12-08 21:38:05 +00:00
|
|
|
void conInit(void) {
|
|
|
|
|
|
|
|
CD1.vmt = &vmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @} */
|