2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
2021-06-10 18:40:35 +02:00
|
|
|
* apps/system/nsh/nsh_main.c
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-10 13:17:16 +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-10 13:17:16 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-10 13:17:16 +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 <sys/stat.h>
|
2018-03-16 15:51:49 +01:00
|
|
|
#include <sys/boardctl.h>
|
2011-03-20 19:18:19 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2016-07-11 18:11:18 +02:00
|
|
|
#include "nshlib/nshlib.h"
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-03-29 01:27:24 +02:00
|
|
|
/* The NSH telnet console requires networking support (and TCP/IP) */
|
|
|
|
|
|
|
|
#ifndef CONFIG_NET
|
|
|
|
# undef CONFIG_NSH_TELNET
|
|
|
|
#endif
|
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
2020-04-18 20:02:09 +02:00
|
|
|
* Public Functions
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2020-04-18 20:02:09 +02:00
|
|
|
* Name: nsh_main
|
2018-08-18 19:27:40 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This is the main logic for the case of the NSH task. It will perform
|
|
|
|
* one-time NSH initialization and start an interactive session on the
|
|
|
|
* current console device.
|
|
|
|
*
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-18 20:02:09 +02:00
|
|
|
int main(int argc, FAR char *argv[])
|
2011-03-20 19:18:19 +01:00
|
|
|
{
|
2020-04-18 20:02:09 +02:00
|
|
|
struct sched_param param;
|
2022-10-15 11:31:04 +02:00
|
|
|
int ret = 0;
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2020-04-18 20:02:09 +02:00
|
|
|
/* Check the task priority that we were started with */
|
|
|
|
|
|
|
|
sched_getparam(0, ¶m);
|
|
|
|
if (param.sched_priority != CONFIG_SYSTEM_NSH_PRIORITY)
|
|
|
|
{
|
|
|
|
/* If not then set the priority to the configured priority */
|
|
|
|
|
|
|
|
param.sched_priority = CONFIG_SYSTEM_NSH_PRIORITY;
|
|
|
|
sched_setparam(0, ¶m);
|
|
|
|
}
|
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
/* Initialize the NSH library */
|
|
|
|
|
|
|
|
nsh_initialize();
|
|
|
|
|
2018-03-16 15:51:49 +01:00
|
|
|
#ifdef CONFIG_NSH_CONSOLE
|
2020-04-17 05:45:51 +02:00
|
|
|
/* If the serial console front end is selected, run it on this thread */
|
2011-03-20 19:18:19 +01:00
|
|
|
|
2020-08-17 12:28:50 +02:00
|
|
|
ret = nsh_consolemain(argc, argv);
|
2012-02-02 17:04:09 +01:00
|
|
|
|
|
|
|
/* nsh_consolemain() should not return. So if we get here, something
|
|
|
|
* is wrong.
|
|
|
|
*/
|
|
|
|
|
|
|
|
fprintf(stderr, "ERROR: nsh_consolemain() returned: %d\n", ret);
|
2022-10-15 11:31:04 +02:00
|
|
|
ret = 1;
|
2011-03-20 19:18:19 +01:00
|
|
|
#endif
|
2012-02-02 17:04:09 +01:00
|
|
|
|
2022-10-15 11:31:04 +02:00
|
|
|
return ret;
|
2011-03-20 19:18:19 +01:00
|
|
|
}
|