How ad an service FTP in my application to future update in firmware?

I have completed my application in my development kit with JTAG ConnectME . In my application I use HTML TO C.

For my application works, was necessary to modify a sample project from the list of sample projects. This was for many library problems when I created a new project.

The sample project that I modify is the HTTP SERVER SAMPLE.

my application that is modifying the sample project “HTTP Server SAMPLE” for my own code , I need upload in a CONNECTME without JTAG, but …

How I add an service FTP in the sample project "HTTP SERVER SAMPLE " to future update to FIRMWARE in my connectme without JTAG???

you can explain step by step?

I’m new to the FTP protocol

Hi,
its simple. Search in doc for this function naFtpDlInit(). This function initialises FTP for new image upload.

In simply way:

add to main.c to applicationStart function this line

naFtpDlInit(1);

ant to the top of main.c add
#include “fservapi.h”

and go to
project->properties -> Net+OS and select libraries and add this libs:

libfilesys.a
libftpsrv.a

At thats all I hope.

Best regards

Jiri Kubias