2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
2012-09-13 14:36:32 +02:00
|
|
|
* examples/serloop/serloop_main.c
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you 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
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02: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.
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-02 22:06:11 +02:00
|
|
|
* Pre-processor Definitions
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-08-30 22:13:50 +02:00
|
|
|
* serloop_main
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2014-09-06 17:23:23 +02:00
|
|
|
int main(int argc, FAR char *argv[])
|
2011-03-20 19:18:19 +01:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_EXAMPLES_SERLOOP_BUFIO
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
ch = getchar();
|
|
|
|
if (ch < 1)
|
|
|
|
{
|
|
|
|
ch = '!';
|
|
|
|
}
|
|
|
|
else if ((ch < 0x20 || ch > 0x7e) && ch != '\n')
|
|
|
|
{
|
|
|
|
ch = '.';
|
|
|
|
}
|
2014-10-30 23:33:40 +01:00
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
putchar(ch);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
uint8_t ch;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
ret = read(0, &ch, 1);
|
|
|
|
if (ret < 1)
|
|
|
|
{
|
|
|
|
ch = '!';
|
|
|
|
}
|
|
|
|
else if ((ch < 0x20 || ch > 0x7e) && ch != '\n')
|
|
|
|
{
|
|
|
|
ch = '.';
|
|
|
|
}
|
2014-10-30 23:33:40 +01:00
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
ret = write(1, &ch, 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|