This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ARM9 with VNC using keil

​Hi

I am using nuvoton RDK N9H30 Evaluation board for my development

I want to connect my Evaluation board to PC,

so that i can view my TFT screen in PC

For this i have downloaded emwin VNC tool from segger

I am having example C code for GUI_X_VNCServer 

But i want packages need to be installed for VNC uinsg keil

Also i need example project from any other microcontroller using VNC

Please anyone share your VNC project for example

I also wants to know the links for MDK 5-TCP/IP stack packages to use VNC with keil

Thanks

R Sridhar

Parents
  • Hi,

    To operate VNC under Keil MDK 5, you need have these packages (in nutshell):

    - Graphics -> VNC Server

    - Network -> Socket -> BSD+TCP+UDP (all of them)

    - Network -> CORE

    - Network -> ETH

    - CMSIS driver -> ETH MAC + PHY (depends on your board)

    - Others: Any RTOS is mandatory and suitable graphics driver with display which supports read back frame buffer, or system memory with external frame buffer, or cache enabled.

    The only thing to add this line after GUI init:

    GUI_VNC_X_StartServer(0, 0);

    After this, it should be work fine.

    Attila

Reply
  • Hi,

    To operate VNC under Keil MDK 5, you need have these packages (in nutshell):

    - Graphics -> VNC Server

    - Network -> Socket -> BSD+TCP+UDP (all of them)

    - Network -> CORE

    - Network -> ETH

    - CMSIS driver -> ETH MAC + PHY (depends on your board)

    - Others: Any RTOS is mandatory and suitable graphics driver with display which supports read back frame buffer, or system memory with external frame buffer, or cache enabled.

    The only thing to add this line after GUI init:

    GUI_VNC_X_StartServer(0, 0);

    After this, it should be work fine.

    Attila

Children
No data