examples/nxhello now supports only multiuser mode.
This commit is contained in:
parent
47dabf17aa
commit
7e151940cc
@ -7,6 +7,7 @@ config EXAMPLES_NX
|
|||||||
bool "NX graphics example"
|
bool "NX graphics example"
|
||||||
default n
|
default n
|
||||||
depends on NX_MULTIUSER
|
depends on NX_MULTIUSER
|
||||||
|
select LIB_BOARDCTL
|
||||||
---help---
|
---help---
|
||||||
Enable the NX graphics example
|
Enable the NX graphics example
|
||||||
|
|
||||||
|
@ -56,13 +56,8 @@
|
|||||||
#include <nuttx/arch.h>
|
#include <nuttx/arch.h>
|
||||||
#include <nuttx/board.h>
|
#include <nuttx/board.h>
|
||||||
|
|
||||||
#ifdef CONFIG_NX_LCDDRIVER
|
#ifdef CONFIG_VNCSERVER
|
||||||
# include <nuttx/lcd/lcd.h>
|
# include <nuttx/video/vnc.h>
|
||||||
#else
|
|
||||||
# include <nuttx/video/fb.h>
|
|
||||||
# ifdef CONFIG_VNCSERVER
|
|
||||||
# include <nuttx/video/vnc.h>
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <nuttx/nx/nx.h>
|
#include <nuttx/nx/nx.h>
|
||||||
|
@ -6,24 +6,28 @@
|
|||||||
config EXAMPLES_NXHELLO
|
config EXAMPLES_NXHELLO
|
||||||
bool "NX graphics \"Hello, World!\" example"
|
bool "NX graphics \"Hello, World!\" example"
|
||||||
default n
|
default n
|
||||||
|
depends on NX_MULTIUSER
|
||||||
|
select LIB_BOARDCTL
|
||||||
---help---
|
---help---
|
||||||
Enable the NX graphics \"Hello, World!\" example
|
Enable the NX graphics \"Hello, World!\" example
|
||||||
|
|
||||||
if EXAMPLES_NXHELLO
|
if EXAMPLES_NXHELLO
|
||||||
|
|
||||||
config EXAMPLES_NXHELLO_VPLANE
|
config EXAMPLES_NXHELLO_PROGNAME
|
||||||
int "Video Plane"
|
string "NX Hello Program name"
|
||||||
default 0
|
default "nxhello"
|
||||||
|
depends on BUILD_KERNEL
|
||||||
---help---
|
---help---
|
||||||
The plane to select from the framebuffer driver for use in the test.
|
This is the name of the program that will be use when the NSH ELF
|
||||||
Default: 0
|
program is installed.
|
||||||
|
|
||||||
config EXAMPLES_NXHELLO_DEVNO
|
config EXAMPLES_NXHELLO_PRIORITY
|
||||||
int "Video Device Number"
|
int "NX Hello task priority"
|
||||||
default 0
|
default 100
|
||||||
---help---
|
|
||||||
The LCD device to select from the LCD driver for use in the test:
|
config EXAMPLES_NXHELLO_STACKSIZE
|
||||||
Default: 0
|
int "NX Hello stack size"
|
||||||
|
default 2048
|
||||||
|
|
||||||
config EXAMPLES_NXHELLO_BPP
|
config EXAMPLES_NXHELLO_BPP
|
||||||
int "Bits-Per-Pixel"
|
int "Bits-Per-Pixel"
|
||||||
@ -32,7 +36,6 @@ config EXAMPLES_NXHELLO_BPP
|
|||||||
Pixels per pixel to use. Valid options include 1, 2, 4, 8, 16, 24,
|
Pixels per pixel to use. Valid options include 1, 2, 4, 8, 16, 24,
|
||||||
and 32. Default is 32.
|
and 32. Default is 32.
|
||||||
|
|
||||||
|
|
||||||
comment "Example Color Configuration"
|
comment "Example Color Configuration"
|
||||||
|
|
||||||
config EXAMPLES_NXHELLO_DEFAULT_COLORS
|
config EXAMPLES_NXHELLO_DEFAULT_COLORS
|
||||||
@ -74,25 +77,36 @@ config EXAMPLES_NXHELLO_FONTID
|
|||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config EXAMPLES_NXHELLO_EXTERNINIT
|
comment "NX Server Options"
|
||||||
bool "External Device Initialization"
|
|
||||||
default n
|
config EXAMPLES_NXHELLO_LISTENER_STACKSIZE
|
||||||
depends on LIB_BOARDCTL
|
int "NX Server/Listener Stack Size"
|
||||||
select BOARDCTL_GRAPHICS
|
default 2048
|
||||||
---help---
|
---help---
|
||||||
The driver for the graphics device on this platform requires some
|
The stacksize to use when creating the NX server. Default 2048
|
||||||
unusual initialization. This is the case, for example, for SPI LCD/OLED
|
|
||||||
devices. If this configuration is selected, then the platform code
|
|
||||||
must provide an LCD initialization function with a prototype like:
|
|
||||||
|
|
||||||
#ifdef CONFIG_NX_LCDDRIVER
|
config EXAMPLES_NXHELLO_CLIENTPRIO
|
||||||
FAR struct lcd_dev_s *board_graphics_setup(unsigned int devno);
|
int "Client Priority"
|
||||||
#else
|
default 100
|
||||||
FAR struct fb_vtable_s *board_graphics_setup(unsigned int devno);
|
---help---
|
||||||
#endif
|
The client priority. Default: 100
|
||||||
|
|
||||||
and must also define: CONFIG_LIB_BOARDCTL=y and
|
config EXAMPLES_NXHELLO_SERVERPRIO
|
||||||
CONFIG_BOARDCTL_GRAPHICS=y so that the boardctl() interface
|
int "Server Priority"
|
||||||
will be available in order to access this function.
|
default 120
|
||||||
|
---help---
|
||||||
|
The server priority. Default: 120
|
||||||
|
|
||||||
|
config EXAMPLES_NXHELLO_LISTENERPRIO
|
||||||
|
int "Listener Priority"
|
||||||
|
default 80
|
||||||
|
---help---
|
||||||
|
The priority of the event listener thread. Default 80.
|
||||||
|
|
||||||
|
config EXAMPLES_NXHELLO_NOTIFYSIGNO
|
||||||
|
int "Notify Signal Number"
|
||||||
|
default 4
|
||||||
|
---help---
|
||||||
|
The signal number to use with nx_eventnotify(). Default: 4
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -38,16 +38,19 @@
|
|||||||
# NuttX NX Graphics Example.
|
# NuttX NX Graphics Example.
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = nxhello_bkgd.c
|
CSRCS = nxhello_bkgd.c nxhello_listener.c
|
||||||
MAINSRC = nxhello_main.c
|
MAINSRC = nxhello_main.c
|
||||||
|
|
||||||
CONFIG_XYZ_PROGNAME ?= nxhello$(EXEEXT)
|
CONFIG_EXAMPLES_NXHELLO_PROGNAME ?= nxhello$(EXEEXT)
|
||||||
PROGNAME = $(CONFIG_XYZ_PROGNAME)
|
PROGNAME = $(CONFIG_EXAMPLES_NXHELLO_PROGNAME)
|
||||||
|
|
||||||
# NXHELLO built-in application info
|
# NXHELLO built-in application info
|
||||||
|
|
||||||
|
CONFIG_EXAMPLES_NXHELLO_PRIORITY ?= SCHED_PRIORITY_DEFAULT
|
||||||
|
CONFIG_EXAMPLES_NXHELLO_STACKSIZE ?= 2048
|
||||||
|
|
||||||
APPNAME = nxhello
|
APPNAME = nxhello
|
||||||
PRIORITY = SCHED_PRIORITY_DEFAULT
|
PRIORITY = $(CONFIG_EXAMPLES_NXHELLO_PRIORITY)
|
||||||
STACKSIZE = 2048
|
STACKSIZE = $(CONFIG_EXAMPLES_NXHELLO_STACKSIZE)
|
||||||
|
|
||||||
include $(APPDIR)/Application.mk
|
include $(APPDIR)/Application.mk
|
||||||
|
@ -60,12 +60,14 @@
|
|||||||
# error "NX is not enabled (CONFIG_NX)"
|
# error "NX is not enabled (CONFIG_NX)"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIG_EXAMPLES_NXHELLO_VPLANE
|
#ifndef CONFIG_NX_MULTIUSER
|
||||||
# define CONFIG_EXAMPLES_NXHELLO_VPLANE 0
|
# error "Multi-user NX support is required (CONFIG_NX_MULTIUSER=y)"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIG_EXAMPLES_NXHELLO_BPP
|
/* If not specified, assume that the hardware supports one video plane */
|
||||||
# define CONFIG_EXAMPLES_NXHELLO_BPP 32
|
|
||||||
|
#if CONFIG_NX_NPLANES != 1
|
||||||
|
# error "Only CONFIG_NX_NPLANES==1 supported"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIG_EXAMPLES_NXHELLO_BGCOLOR
|
#ifndef CONFIG_EXAMPLES_NXHELLO_BGCOLOR
|
||||||
@ -96,6 +98,35 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Multi-user NX support */
|
||||||
|
|
||||||
|
#ifdef CONFIG_DISABLE_MQUEUE
|
||||||
|
# error "The multi-threaded example requires MQ support (CONFIG_DISABLE_MQUEUE=n)"
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_DISABLE_SIGNALS
|
||||||
|
# error "This example requires signal support (CONFIG_DISABLE_SIGNALS=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
|
||||||
|
#ifndef CONFIG_EXAMPLES_NXHELLO_LISTENER_STACKSIZE
|
||||||
|
# define CONFIG_EXAMPLES_NXHELLO_LISTENER_STACKSIZE 2048
|
||||||
|
#endif
|
||||||
|
#ifndef CONFIG_EXAMPLES_NXHELLO_LISTENERPRIO
|
||||||
|
# define CONFIG_EXAMPLES_NXHELLO_LISTENERPRIO 100
|
||||||
|
#endif
|
||||||
|
#ifndef CONFIG_EXAMPLES_NXHELLO_CLIENTPRIO
|
||||||
|
# define CONFIG_EXAMPLES_NXHELLO_CLIENTPRIO 100
|
||||||
|
#endif
|
||||||
|
#ifndef CONFIG_EXAMPLES_NXHELLO_SERVERPRIO
|
||||||
|
# define CONFIG_EXAMPLES_NXHELLO_SERVERPRIO 120
|
||||||
|
#endif
|
||||||
|
#ifndef CONFIG_EXAMPLES_NXHELLO_NOTIFYSIGNO
|
||||||
|
# define CONFIG_EXAMPLES_NXHELLO_NOTIFYSIGNO 4
|
||||||
|
#endif
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Types
|
* Public Types
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
@ -103,12 +134,7 @@
|
|||||||
enum exitcode_e
|
enum exitcode_e
|
||||||
{
|
{
|
||||||
NXEXIT_SUCCESS = 0,
|
NXEXIT_SUCCESS = 0,
|
||||||
NXEXIT_EXTINITIALIZE,
|
NXEXIT_INIT,
|
||||||
NXEXIT_FBINITIALIZE,
|
|
||||||
NXEXIT_FBGETVPLANE,
|
|
||||||
NXEXIT_LCDINITIALIZE,
|
|
||||||
NXEXIT_LCDGETDEV,
|
|
||||||
NXEXIT_NXOPEN,
|
|
||||||
NXEXIT_FONTOPEN,
|
NXEXIT_FONTOPEN,
|
||||||
NXEXIT_NXREQUESTBKGD,
|
NXEXIT_NXREQUESTBKGD,
|
||||||
NXEXIT_NXSETBGCOLOR
|
NXEXIT_NXSETBGCOLOR
|
||||||
@ -142,6 +168,7 @@ struct nxhello_data_s
|
|||||||
NXHANDLE hnx;
|
NXHANDLE hnx;
|
||||||
NXHANDLE hbkgd;
|
NXHANDLE hbkgd;
|
||||||
NXHANDLE hfont;
|
NXHANDLE hfont;
|
||||||
|
bool connected;
|
||||||
|
|
||||||
/* The screen resolution */
|
/* The screen resolution */
|
||||||
|
|
||||||
@ -149,7 +176,7 @@ struct nxhello_data_s
|
|||||||
nxgl_coord_t yres;
|
nxgl_coord_t yres;
|
||||||
|
|
||||||
volatile bool havepos;
|
volatile bool havepos;
|
||||||
sem_t sem;
|
sem_t eventsem;
|
||||||
volatile int code;
|
volatile int code;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -169,6 +196,10 @@ extern const struct nx_callback_s g_nxhellocb;
|
|||||||
* Public Function Prototypes
|
* Public Function Prototypes
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
/* NX event listener */
|
||||||
|
|
||||||
|
FAR void *nxhello_listener(FAR void *arg);
|
||||||
|
|
||||||
/* Background window interfaces */
|
/* Background window interfaces */
|
||||||
|
|
||||||
void nxhello_hello(NXWINDOW hwnd);
|
void nxhello_hello(NXWINDOW hwnd);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* examples/nxhello/nxhello_bkgd.c
|
* examples/nxhello/nxhello_bkgd.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011, 2013 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2011, 2013, 2017 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
@ -173,7 +173,7 @@ static void nxhello_position(NXWINDOW hwnd, FAR const struct nxgl_size_s *size,
|
|||||||
g_nxhello.yres = bounds->pt2.y + 1;
|
g_nxhello.yres = bounds->pt2.y + 1;
|
||||||
|
|
||||||
g_nxhello.havepos = true;
|
g_nxhello.havepos = true;
|
||||||
sem_post(&g_nxhello.sem);
|
sem_post(&g_nxhello.eventsem);
|
||||||
ginfo("Have xres=%d yres=%d\n", g_nxhello.xres, g_nxhello.yres);
|
ginfo("Have xres=%d yres=%d\n", g_nxhello.xres, g_nxhello.yres);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* examples/nxhello/nxhello_main.c
|
* examples/nxhello/nxhello_main.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2011, 2015-2016 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2011, 2015-2017 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
@ -56,13 +56,8 @@
|
|||||||
#include <nuttx/arch.h>
|
#include <nuttx/arch.h>
|
||||||
#include <nuttx/board.h>
|
#include <nuttx/board.h>
|
||||||
|
|
||||||
#ifdef CONFIG_NX_LCDDRIVER
|
#ifdef CONFIG_VNCSERVER
|
||||||
# include <nuttx/lcd/lcd.h>
|
# include <nuttx/video/vnc.h>
|
||||||
#else
|
|
||||||
# include <nuttx/video/fb.h>
|
|
||||||
# ifdef CONFIG_VNCSERVER
|
|
||||||
# include <nuttx/video/vnc.h>
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <nuttx/nx/nx.h>
|
#include <nuttx/nx/nx.h>
|
||||||
@ -71,49 +66,21 @@
|
|||||||
|
|
||||||
#include "nxhello.h"
|
#include "nxhello.h"
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Pre-processor Definitions
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/* Configuration ************************************************************/
|
|
||||||
/* If not specified, assume that the hardware supports one video plane */
|
|
||||||
|
|
||||||
#ifndef CONFIG_EXAMPLES_NXHELLO_VPLANE
|
|
||||||
# define CONFIG_EXAMPLES_NXHELLO_VPLANE 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* If not specified, assume that the hardware supports one LCD device */
|
|
||||||
|
|
||||||
#ifndef CONFIG_EXAMPLES_NXHELLO_DEVNO
|
|
||||||
# define CONFIG_EXAMPLES_NXHELLO_DEVNO 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Private Types
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Private Function Prototypes
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Private Data
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Data
|
* Public Data
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
struct nxhello_data_s g_nxhello =
|
struct nxhello_data_s g_nxhello =
|
||||||
{
|
{
|
||||||
NULL, /* hnx */
|
NULL, /* hnx */
|
||||||
NULL, /* hbkgd */
|
NULL, /* hbkgd */
|
||||||
NULL, /* hfont */
|
NULL, /* hfont */
|
||||||
0, /* xres */
|
false, /* connected */
|
||||||
0, /* yres */
|
0, /* xres */
|
||||||
false, /* havpos */
|
0, /* yres */
|
||||||
{ 0 }, /* sem */
|
false, /* havpos */
|
||||||
NXEXIT_SUCCESS /* exit code */
|
SEM_INITIALIZER(0), /* sem */
|
||||||
|
NXEXIT_SUCCESS /* exit code */
|
||||||
};
|
};
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
@ -126,106 +93,80 @@ struct nxhello_data_s g_nxhello =
|
|||||||
|
|
||||||
static inline int nxhello_initialize(void)
|
static inline int nxhello_initialize(void)
|
||||||
{
|
{
|
||||||
FAR NX_DRIVERTYPE *dev;
|
struct sched_param param;
|
||||||
|
pthread_t thread;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
#if defined(CONFIG_EXAMPLES_NXHELLO_EXTERNINIT)
|
/* Set the client task priority */
|
||||||
struct boardioc_graphics_s devinfo;
|
|
||||||
|
|
||||||
/* Use external graphics driver initialization */
|
param.sched_priority = CONFIG_EXAMPLES_NXHELLO_CLIENTPRIO;
|
||||||
|
ret = sched_setparam(0, ¶m);
|
||||||
printf("nxhello_initialize: Initializing external graphics device\n");
|
|
||||||
|
|
||||||
devinfo.devno = CONFIG_EXAMPLES_NXHELLO_DEVNO;
|
|
||||||
devinfo.dev = NULL;
|
|
||||||
|
|
||||||
ret = boardctl(BOARDIOC_GRAPHICS_SETUP, (uintptr_t)&devinfo);
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
printf("nxhello_initialize: boardctl failed, devno=%d: %d\n",
|
printf("nxhello_initialize: sched_setparam failed: %d\n" , ret);
|
||||||
CONFIG_EXAMPLES_NXHELLO_DEVNO, errno);
|
|
||||||
g_nxhello.code = NXEXIT_EXTINITIALIZE;
|
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev = devinfo.dev;
|
/* Start the NX server kernel thread */
|
||||||
|
|
||||||
#elif defined(CONFIG_NX_LCDDRIVER)
|
ret = boardctl(BOARDIOC_NX_START, 0);
|
||||||
/* Initialize the LCD device */
|
|
||||||
|
|
||||||
printf("nxhello_initialize: Initializing LCD\n");
|
|
||||||
ret = board_lcd_initialize();
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
printf("nxhello_initialize: board_lcd_initialize failed: %d\n", -ret);
|
printf("nxhello_initialize: Failed to start the NX server: %d\n", errno);
|
||||||
g_nxhello.code = NXEXIT_LCDINITIALIZE;
|
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get the device instance */
|
/* Connect to the server */
|
||||||
|
|
||||||
dev = board_lcd_getdev(CONFIG_EXAMPLES_NXHELLO_DEVNO);
|
g_nxhello.hnx = nx_connect();
|
||||||
if (!dev)
|
if (g_nxhello.hnx)
|
||||||
{
|
{
|
||||||
printf("nxhello_initialize: board_lcd_getdev failed, devno=%d\n",
|
pthread_attr_t attr;
|
||||||
CONFIG_EXAMPLES_NXHELLO_DEVNO);
|
|
||||||
g_nxhello.code = NXEXIT_LCDGETDEV;
|
|
||||||
return ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Turn the LCD on at 75% power */
|
|
||||||
|
|
||||||
(void)dev->setpower(dev, ((3*CONFIG_LCD_MAXPOWER + 3)/4));
|
|
||||||
|
|
||||||
#else
|
|
||||||
/* Initialize the frame buffer device */
|
|
||||||
|
|
||||||
printf("nxhello_initialize: Initializing framebuffer\n");
|
|
||||||
|
|
||||||
ret = up_fbinitialize(0);
|
|
||||||
if (ret < 0)
|
|
||||||
{
|
|
||||||
printf("nxhello_initialize: up_fbinitialize failed: %d\n", -ret);
|
|
||||||
|
|
||||||
g_nxhello.code = NXEXIT_FBINITIALIZE;
|
|
||||||
return ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
dev = up_fbgetvplane(0, CONFIG_EXAMPLES_NXHELLO_VPLANE);
|
|
||||||
if (!dev)
|
|
||||||
{
|
|
||||||
printf("nxhello_initialize: up_fbgetvplane failed, vplane=%d\n",
|
|
||||||
CONFIG_EXAMPLES_NXHELLO_VPLANE);
|
|
||||||
|
|
||||||
g_nxhello.code = NXEXIT_FBGETVPLANE;
|
|
||||||
return ERROR;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Then open NX */
|
|
||||||
|
|
||||||
printf("nxhello_initialize: Open NX\n");
|
|
||||||
g_nxhello.hnx = nx_open(dev);
|
|
||||||
if (!g_nxhello.hnx)
|
|
||||||
{
|
|
||||||
printf("nxhello_initialize: nx_open failed: %d\n", errno);
|
|
||||||
g_nxhello.code = NXEXIT_NXOPEN;
|
|
||||||
return ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef CONFIG_VNCSERVER
|
#ifdef CONFIG_VNCSERVER
|
||||||
/* Setup the VNC server to support keyboard/mouse inputs */
|
/* Setup the VNC server to support keyboard/mouse inputs */
|
||||||
|
|
||||||
ret = vnc_default_fbinitialize(0, g_nxhello.hnx);
|
ret = vnc_default_fbinitialize(0, g_nxhello.hnx);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
printf("vnc_default_fbinitialize failed: %d\n", ret);
|
||||||
|
nx_disconnect(g_nxhello.hnx);
|
||||||
|
return ERROR;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
/* Start a separate thread to listen for server events. This is probably
|
||||||
|
* the least efficient way to do this, but it makes this example flow more
|
||||||
|
* smoothly.
|
||||||
|
*/
|
||||||
|
|
||||||
|
(void)pthread_attr_init(&attr);
|
||||||
|
param.sched_priority = CONFIG_EXAMPLES_NXHELLO_LISTENERPRIO;
|
||||||
|
(void)pthread_attr_setschedparam(&attr, ¶m);
|
||||||
|
(void)pthread_attr_setstacksize(&attr, CONFIG_EXAMPLES_NXHELLO_LISTENER_STACKSIZE);
|
||||||
|
|
||||||
|
ret = pthread_create(&thread, &attr, nxhello_listener, NULL);
|
||||||
|
if (ret != 0)
|
||||||
|
{
|
||||||
|
printf("nxhello_initialize: pthread_create failed: %d\n", ret);
|
||||||
|
return ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Don't return until we are connected to the server */
|
||||||
|
|
||||||
|
while (!g_nxhello.connected)
|
||||||
|
{
|
||||||
|
/* Wait for the listener thread to wake us up when we really
|
||||||
|
* are connected.
|
||||||
|
*/
|
||||||
|
|
||||||
|
(void)sem_wait(&g_nxhello.eventsem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
printf("vnc_default_fbinitialize failed: %d\n", ret);
|
printf("nxhello_initialize: nx_connect failed: %d\n", errno);
|
||||||
|
|
||||||
nx_close(g_nxhello.hnx);
|
|
||||||
g_nxhello.code = NXEXIT_FBINITIALIZE;
|
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
@ -254,7 +195,7 @@ int nxhello_main(int argc, char *argv[])
|
|||||||
if (!g_nxhello.hnx || ret < 0)
|
if (!g_nxhello.hnx || ret < 0)
|
||||||
{
|
{
|
||||||
printf("nxhello_main: Failed to get NX handle: %d\n", errno);
|
printf("nxhello_main: Failed to get NX handle: %d\n", errno);
|
||||||
g_nxhello.code = NXEXIT_NXOPEN;
|
g_nxhello.code = NXEXIT_INIT;
|
||||||
goto errout;
|
goto errout;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -298,8 +239,9 @@ int nxhello_main(int argc, char *argv[])
|
|||||||
|
|
||||||
while (!g_nxhello.havepos)
|
while (!g_nxhello.havepos)
|
||||||
{
|
{
|
||||||
(void)sem_wait(&g_nxhello.sem);
|
(void)sem_wait(&g_nxhello.eventsem);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("nxhello_main: Screen resolution (%d,%d)\n", g_nxhello.xres, g_nxhello.yres);
|
printf("nxhello_main: Screen resolution (%d,%d)\n", g_nxhello.xres, g_nxhello.yres);
|
||||||
|
|
||||||
/* Now, say hello and exit, sleeping a little before each. */
|
/* Now, say hello and exit, sleeping a little before each. */
|
||||||
@ -315,8 +257,9 @@ int nxhello_main(int argc, char *argv[])
|
|||||||
/* Close NX */
|
/* Close NX */
|
||||||
|
|
||||||
errout_with_nx:
|
errout_with_nx:
|
||||||
printf("nxhello_main: Close NX\n");
|
printf("nxhello_main: Disconnect from the server\n");
|
||||||
nx_close(g_nxhello.hnx);
|
nx_disconnect(g_nxhello.hnx);
|
||||||
|
|
||||||
errout:
|
errout:
|
||||||
return g_nxhello.code;
|
return g_nxhello.code;
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ config EXAMPLES_NXTERM
|
|||||||
bool "NxTerm example"
|
bool "NxTerm example"
|
||||||
default n
|
default n
|
||||||
depends on NX_MULTIUSER
|
depends on NX_MULTIUSER
|
||||||
|
select LIB_BOARDCTL
|
||||||
---help---
|
---help---
|
||||||
Enable the NxTerm example
|
Enable the NxTerm example
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user