nuttx-apps/examples/serialblaster/serialblaster_main.c
Alin Jerpelea abf34e5d5a apps: examples: update license to Apache
Gregory Nutt is the copyright holder for those files and he has submitted the
SGA as a result we can migrate the licenses to Apache.

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
2022-03-08 17:04:01 +02:00

117 lines
3.1 KiB
C

/****************************************************************************
* apps/examples/serialblaster/serialblaster_main.c
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include <nuttx/clock.h>
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <nuttx/fs/fs.h>
#include <nuttx/arch.h>
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define BUFFERED_IO
/****************************************************************************
* Private Data
****************************************************************************/
static const char s[] = "abcdefghijklmnopqrstuvwxyz";
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* serialblaster_main
****************************************************************************/
int main(int argc, FAR char *argv[])
{
int ret;
int fd;
FAR char *devpath;
int size = 0;
int rem;
if (argc == 1)
{
devpath = CONFIG_EXAMPLES_SERIALBLASTER_DEVPATH;
}
else if (argc == 2)
{
devpath = argv[1];
}
else if (argc == 3)
{
devpath = argv[1];
size = strtol(argv[2], NULL, 10);
}
else
{
fprintf(stderr, "Usage: %s [devpath]\n", argv[0]);
goto errout;
}
fd = open(devpath, O_RDWR);
if (fd < 0)
{
printf("dev_ttyS2: ERROR Failed to open /dev/ttyS2\n");
return -1;
}
rem = size;
while (size > sizeof(s))
{
if (rem > 26)
{
ret = write(fd, s, (sizeof(s)-1));
}
rem = rem - 26;
if (rem < 26)
{
ret = write(fd, s, rem);
}
size = size - 26;
UNUSED(ret);
}
up_udelay(5000000);
close(fd);
return 0;
errout:
fflush(stderr);
return EXIT_FAILURE;
}