2012-03-27 18:59:15 +02:00
|
|
|
/****************************************************************************
|
2021-06-16 09:22:16 +02:00
|
|
|
* apps/examples/nxterm/nxterm_internal.h
|
2012-03-27 18:59:15 +02: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
|
2012-03-27 18:59:15 +02:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-03-27 18:59:15 +02: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.
|
2012-03-27 18:59:15 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-16 03:31:55 +01:00
|
|
|
#ifndef __APPS_EXAMPLES_NXTERM_NXTERM_INTERNAL_H
|
|
|
|
#define __APPS_EXAMPLES_NXTERM_NXTERM_INTERNAL_H
|
2012-03-27 18:59:15 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
|
2013-12-10 16:29:20 +01:00
|
|
|
#include <nuttx/video/rgbcolors.h>
|
2012-03-28 18:06:56 +02:00
|
|
|
|
2012-03-27 18:59:15 +02:00
|
|
|
#include <nuttx/nx/nx.h>
|
|
|
|
#include <nuttx/nx/nxglib.h>
|
|
|
|
#include <nuttx/nx/nxtk.h>
|
2014-09-20 22:51:48 +02:00
|
|
|
#include <nuttx/nx/nxterm.h>
|
2012-03-27 18:59:15 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-02 22:06:11 +02:00
|
|
|
* Pre-processor Definitions
|
2012-03-27 18:59:15 +02:00
|
|
|
****************************************************************************/
|
2022-01-16 03:31:55 +01:00
|
|
|
|
2012-03-27 18:59:15 +02:00
|
|
|
/* Configuration ************************************************************/
|
2022-01-16 03:31:55 +01:00
|
|
|
|
2012-03-30 00:20:47 +02:00
|
|
|
/* Need NX graphics support */
|
2012-03-27 18:59:15 +02:00
|
|
|
|
|
|
|
#ifndef CONFIG_NX
|
2012-03-28 19:19:17 +02:00
|
|
|
# error "NX is not enabled (CONFIG_NX=y)"
|
2012-03-27 18:59:15 +02:00
|
|
|
#endif
|
|
|
|
|
2014-09-20 22:51:48 +02:00
|
|
|
/* Can't do the NxTerm example if the NxTerm driver is not built */
|
2012-03-30 00:20:47 +02:00
|
|
|
|
2014-09-20 22:18:08 +02:00
|
|
|
#ifndef CONFIG_NXTERM
|
2014-09-20 22:51:48 +02:00
|
|
|
# error "NxTerm is not enabled (CONFIG_NXTERM=y)"
|
2012-03-28 19:19:17 +02:00
|
|
|
#endif
|
|
|
|
|
2012-03-30 00:20:47 +02:00
|
|
|
/* If there is no NSH console, then why are we running this example? */
|
|
|
|
|
|
|
|
#ifndef CONFIG_NSH_CONSOLE
|
|
|
|
# warning "Expected CONFIG_NSH_CONSOLE=y"
|
|
|
|
#endif
|
|
|
|
|
2012-03-27 18:59:15 +02:00
|
|
|
/* If not specified, assume that the hardware supports one video plane */
|
|
|
|
|
|
|
|
#if CONFIG_NX_NPLANES != 1
|
|
|
|
# error "Only CONFIG_NX_NPLANES==1 supported"
|
|
|
|
#endif
|
|
|
|
|
2012-03-28 03:52:00 +02:00
|
|
|
/* Pixel depth. If none provided, pick the smallest enabled pixel depth */
|
2012-03-28 00:33:15 +02:00
|
|
|
|
2019-03-06 19:52:22 +01:00
|
|
|
#if defined(CONFIG_EXAMPLES_NXTERM_BPP) && \
|
|
|
|
CONFIG_EXAMPLES_NXTERM_BPP != 1 && \
|
|
|
|
CONFIG_EXAMPLES_NXTERM_BPP != 2 && \
|
|
|
|
CONFIG_EXAMPLES_NXTERM_BPP != 4 && \
|
|
|
|
CONFIG_EXAMPLES_NXTERM_BPP != 8 && \
|
|
|
|
CONFIG_EXAMPLES_NXTERM_BPP != 16 && \
|
|
|
|
CONFIG_EXAMPLES_NXTERM_BPP != 32
|
|
|
|
# error Invalid selection for CONFIG_EXAMPLES_NXTERM_BPP
|
|
|
|
# undef CONFIG_EXAMPLES_NXTERM_BPP
|
|
|
|
#endif
|
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_BPP
|
2012-03-28 00:33:15 +02:00
|
|
|
# if !defined(CONFIG_NX_DISABLE_1BPP)
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BPP 1
|
2012-03-28 00:33:15 +02:00
|
|
|
# elif !defined(CONFIG_NX_DISABLE_2BPP)
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BPP 2
|
2012-03-28 00:33:15 +02:00
|
|
|
# elif !defined(CONFIG_NX_DISABLE_4BPP)
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BPP 4
|
2012-03-28 00:33:15 +02:00
|
|
|
# elif !defined(CONFIG_NX_DISABLE_8BPP)
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BPP 8
|
2012-03-28 00:33:15 +02:00
|
|
|
# elif !defined(CONFIG_NX_DISABLE_16BPP)
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BPP 16
|
2022-01-16 10:47:34 +01:00
|
|
|
# elif !defined(CONFIG_NX_DISABLE_24BPP)
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BPP 24
|
2012-03-28 00:33:15 +02:00
|
|
|
# elif !defined(CONFIG_NX_DISABLE_32BPP)
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BPP 32
|
2012-03-28 00:33:15 +02:00
|
|
|
# else
|
|
|
|
# error "No pixel depth provided"
|
|
|
|
# endif
|
2012-03-27 18:59:15 +02:00
|
|
|
#endif
|
|
|
|
|
2012-03-28 18:06:56 +02:00
|
|
|
/* Background color (default is darker royal blue) */
|
2012-03-27 18:59:15 +02:00
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_BGCOLOR
|
|
|
|
# if CONFIG_EXAMPLES_NXTERM_BPP == 24 || CONFIG_EXAMPLES_NXTERM_BPP == 32
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BGCOLOR RGBTO24(39, 64, 139)
|
|
|
|
# elif CONFIG_EXAMPLES_NXTERM_BPP == 16
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BGCOLOR RGBTO16(39, 64, 139)
|
2012-03-27 18:59:15 +02:00
|
|
|
# else
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_BGCOLOR RGBTO8(39, 64, 139)
|
2012-03-27 18:59:15 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2012-03-28 18:06:56 +02:00
|
|
|
/* Window color (lighter steel blue) */
|
2012-03-27 18:59:15 +02:00
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_WCOLOR
|
|
|
|
# if CONFIG_EXAMPLES_NXTERM_BPP == 24 || CONFIG_EXAMPLES_NXTERM_BPP == 32
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_WCOLOR RGBTO24(202, 225, 255)
|
|
|
|
# elif CONFIG_EXAMPLES_NXTERM_BPP == 16
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_WCOLOR RGBTO16(202, 225, 255)
|
2012-03-27 18:59:15 +02:00
|
|
|
# else
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_WCOLOR RGBTO8(202, 225, 255)
|
2012-03-27 18:59:15 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2012-03-28 18:06:56 +02:00
|
|
|
/* Toolbar color (medium grey) */
|
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_TBCOLOR
|
2015-09-08 19:53:29 +02:00
|
|
|
# if CONFIG_EXAMPLES_NXTERM_BPP == 24 || CONFIG_EXAMPLES_NXTERM_BPP == 32
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_TBCOLOR RGBTO24(188, 188, 188)
|
2015-09-08 19:53:29 +02:00
|
|
|
# elif CONFIG_EXAMPLES_NXTERM_BPP == 16
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_TBCOLOR RGBTO16(188, 188, 188)
|
2012-03-28 18:06:56 +02:00
|
|
|
# else
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_TBCOLOR RGBTO8(188, 188, 188)
|
2012-03-28 18:06:56 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2012-03-27 18:59:15 +02:00
|
|
|
/* Font ID */
|
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_FONTID
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_FONTID NXFONT_DEFAULT
|
2012-03-27 18:59:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Font color */
|
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_FONTCOLOR
|
|
|
|
# if CONFIG_EXAMPLES_NXTERM_BPP == 24 || CONFIG_EXAMPLES_NXTERM_BPP == 32
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_FONTCOLOR RGBTO24(0, 0, 0)
|
|
|
|
# elif CONFIG_EXAMPLES_NXTERM_BPP == 16
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_FONTCOLOR RGBTO16(0, 0, 0)
|
2012-03-27 18:59:15 +02:00
|
|
|
# else
|
2015-09-08 17:20:49 +02:00
|
|
|
# define CONFIG_EXAMPLES_NXTERM_FONTCOLOR RGBTO8(0, 0, 0)
|
2012-03-27 18:59:15 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Height of the toolbar */
|
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_TOOLBAR_HEIGHT
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_TOOLBAR_HEIGHT 16
|
2012-03-27 18:59:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Multi-user NX support */
|
|
|
|
|
2012-03-28 19:19:17 +02:00
|
|
|
#ifdef CONFIG_DISABLE_MQUEUE
|
|
|
|
# error "The multi-threaded example requires MQ support (CONFIG_DISABLE_MQUEUE=n)"
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_DISABLE_PTHREAD
|
|
|
|
# error "This example requires pthread support (CONFIG_DISABLE_PTHREAD=n)"
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_NX_BLOCKING
|
|
|
|
# error "This example depends on CONFIG_NX_BLOCKING"
|
|
|
|
#endif
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_STACKSIZE
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_STACKSIZE 2048
|
2012-03-28 19:19:17 +02:00
|
|
|
#endif
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_LISTENERPRIO
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_LISTENERPRIO 100
|
2012-03-28 19:19:17 +02:00
|
|
|
#endif
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_CLIENTPRIO
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_CLIENTPRIO 100
|
2012-03-28 19:19:17 +02:00
|
|
|
#endif
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_SERVERPRIO
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_SERVERPRIO 120
|
2012-03-28 19:19:17 +02:00
|
|
|
#endif
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_NOTIFYSIGNO
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_NOTIFYSIGNO 4
|
2012-03-27 18:59:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* NX Console Device */
|
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_MINOR
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_MINOR 0
|
2012-03-27 18:59:15 +02:00
|
|
|
#endif
|
|
|
|
|
2015-09-08 17:20:49 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_DEVNAME
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_DEVNAME "/dev/nxterm0"
|
2012-03-27 18:59:15 +02:00
|
|
|
#endif
|
|
|
|
|
2014-09-20 22:51:48 +02:00
|
|
|
/* NxTerm task */
|
2012-03-30 00:20:47 +02:00
|
|
|
|
2014-09-20 22:25:51 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_PRIO
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_PRIO SCHED_PRIORITY_DEFAULT
|
2012-03-30 00:20:47 +02:00
|
|
|
#endif
|
|
|
|
|
2014-09-20 22:25:51 +02:00
|
|
|
#ifndef CONFIG_EXAMPLES_NXTERM_STACKSIZE
|
|
|
|
# define CONFIG_EXAMPLES_NXTERM_STACKSIZE 2048
|
2012-03-30 00:20:47 +02:00
|
|
|
#endif
|
|
|
|
|
2012-03-27 18:59:15 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* All example global variables are retained in a structure to minimize
|
|
|
|
* the chance of name collisions.
|
|
|
|
*/
|
|
|
|
|
2014-09-20 22:51:48 +02:00
|
|
|
struct nxterm_state_s
|
2012-03-27 18:59:15 +02:00
|
|
|
{
|
2014-09-20 22:51:48 +02:00
|
|
|
volatile bool haveres; /* True: Have screen resolution */
|
|
|
|
volatile bool connected; /* True: Connected to server */
|
|
|
|
sem_t eventsem; /* Control waiting for display events */
|
|
|
|
pid_t pid; /* Console task ID */
|
|
|
|
NXHANDLE hnx; /* The connection handler */
|
|
|
|
NXTKWINDOW hwnd; /* The window */
|
|
|
|
NXTERM hdrvr; /* The console driver */
|
|
|
|
struct nxterm_window_s wndo; /* Describes the window */
|
|
|
|
nxgl_coord_t xres; /* Screen X resolution */
|
|
|
|
nxgl_coord_t yres; /* Screen Y resolution */
|
|
|
|
struct nxgl_size_s wsize; /* Window size */
|
|
|
|
struct nxgl_point_s wpos; /* Window position */
|
2012-03-27 18:59:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
2016-02-22 01:15:00 +01:00
|
|
|
* Public Data
|
2012-03-27 18:59:15 +02:00
|
|
|
****************************************************************************/
|
2022-01-16 10:47:34 +01:00
|
|
|
|
2012-03-27 18:59:15 +02:00
|
|
|
/* All example global variables are retained in a structure to minimize
|
|
|
|
* the chance of name collisions.
|
|
|
|
*/
|
|
|
|
|
2014-09-20 22:51:48 +02:00
|
|
|
extern struct nxterm_state_s g_nxterm_vars;
|
2012-03-27 18:59:15 +02:00
|
|
|
|
|
|
|
/* NX callback vtables */
|
|
|
|
|
2014-09-20 22:51:48 +02:00
|
|
|
extern const struct nx_callback_s g_nxtermcb;
|
2012-03-27 18:59:15 +02:00
|
|
|
extern const struct nx_callback_s g_nxtoolcb;
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
2012-03-28 19:19:17 +02:00
|
|
|
|
|
|
|
/* Server thread support */
|
|
|
|
|
2015-04-01 00:20:21 +02:00
|
|
|
FAR void *nxterm_listener(FAR void *arg);
|
2012-03-27 18:59:15 +02:00
|
|
|
|
2022-01-16 03:31:55 +01:00
|
|
|
#endif /* __APPS_EXAMPLES_NXTERM_NXTERM_INTERNAL_H */
|