This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFTP_Server_SDFAT2.ino
388 lines (301 loc) · 9.63 KB
/
FTP_Server_SDFAT2.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/**********************************************************************************************************************
FTP_Server_SDFAT2.ino
FTP_Server_Teensy41 is an FTP Server for Teensy 4.1 using SD, FS, etc. with QNEthernet or NativeEthernet
Based on and modified from Arduino-Ftp-Server Library (https://github.com/gallegojm/Arduino-Ftp-Server)
Built by Khoi Hoang https://github.com/khoih-prog/FTP_Server_Teensy41
***********************************************************************************************************************/
#include "defines.h"
#include <SD.h>
#include <SPI.h>
#define PASV_RESPONSE_STYLE_NEW true
#define FTP_FILESYST FTP_SDFAT2
// Default 2048
#define FTP_BUF_SIZE 8192
#define FTP_USER_NAME_LEN 64 // Max permissible and default are 64
#define FTP_USER_PWD_LEN 128 // Max permissible and default are 128
#include <FTP_Server_Teensy41.h>
// Object for FtpServer
// Command port and Data port in passive mode can be defined here
// FtpServer ftpSrv( 221, 25000 );
// FtpServer ftpSrv( 421 ); // Default data port in passive mode is 55600
FtpServer ftpSrv; // Default command port is 21 ( !! without parenthesis !! )
File myFile;
// change this to match your SD shield or module;
// Arduino Ethernet shield: pin 4
// Adafruit SD shields and modules: pin 10
// Sparkfun SD shield: pin 8
// Teensy audio board: pin 10
// Teensy 3.5 & 3.6 & 4.1 on-board: BUILTIN_SDCARD
// Wiz820+SD board: pin 4
// Teensy 2.0: pin 0
// Teensy++ 2.0: pin 20
const int chipSelect = BUILTIN_SDCARD; //10;
SDClass myfs;
// set up variables using the SD utility library functions:
Sd2Card card;
SdVolume volume;
SdFile root;
/*******************************************************************************
** **
** INITIALISATION **
** **
*******************************************************************************/
#define FTP_ACCOUNT "teensy4x"
#define FTP_PASSWORD "ftp_test"
void initEthernet()
{
#if USE_QN_ETHERNET
Serial.println(F("=========== USE_QN_ETHERNET ==========="));
#elif USE_NATIVE_ETHERNET
Serial.println(F("======== USE_NATIVE_ETHERNET ========"));
#elif USE_ETHERNET_GENERIC
Serial.println(F("======== USE_ETHERNET_GENERIC ========"));
#else
Serial.println(F("======================================="));
#endif
#if USE_NATIVE_ETHERNET
// start the ethernet connection and the server:
// Use DHCP dynamic IP and random mac
uint16_t index = millis() % NUMBER_OF_MAC;
// Use Static IP
//Ethernet.begin(mac[index], ip);
Ethernet.begin(mac[index]);
Serial.print(F("Using mac index = "));
Serial.println(index);
Serial.print(F("Connected! IP address: "));
Serial.println(Ethernet.localIP());
#elif USE_QN_ETHERNET
#if USING_DHCP
// Start the Ethernet connection, using DHCP
Serial.print("Initialize Ethernet using DHCP => ");
Ethernet.begin();
// give the Ethernet shield minimum 1 sec for DHCP and 2 secs for staticP to initialize:
delay(1000);
#else
// Start the Ethernet connection, using static IP
Serial.print("Initialize Ethernet using static IP => ");
Ethernet.begin(myIP, myNetmask, myGW);
Ethernet.setDNSServerIP(mydnsServer);
#endif
if (!Ethernet.waitForLocalIP(5000))
{
Serial.println("Failed to configure Ethernet");
if (!Ethernet.linkStatus())
{
Serial.println("Ethernet cable is not connected.");
}
// Stay here forever
while (true)
{
delay(1);
}
}
else
{
Serial.print("IP Address = ");
Serial.println(Ethernet.localIP());
}
// give the Ethernet shield minimum 1 sec for DHCP and 2 secs for staticP to initialize:
//delay(2000);
#else
FTP_LOGWARN(F("Default SPI pinout:"));
FTP_LOGWARN1(F("MOSI:"), MOSI);
FTP_LOGWARN1(F("MISO:"), MISO);
FTP_LOGWARN1(F("SCK:"), SCK);
FTP_LOGWARN1(F("SS:"), SS);
FTP_LOGWARN(F("========================="));
// unknown board, do nothing, use default SS = 10
#ifndef USE_THIS_SS_PIN
#define USE_THIS_SS_PIN 10 // For other boards
#endif
#if defined(BOARD_NAME)
FTP_LOGWARN3(F("Board :"), BOARD_NAME, F(", setCsPin:"), USE_THIS_SS_PIN);
#else
FTP_LOGWARN1(F("Unknown board setCsPin:"), USE_THIS_SS_PIN);
#endif
// For other boards, to change if necessary
Ethernet.init (USE_THIS_SS_PIN);
// start the ethernet connection and the server:
// Use DHCP dynamic IP and random mac
uint16_t index = millis() % NUMBER_OF_MAC;
// Use Static IP
//Ethernet.begin(mac[index], ip);
Ethernet.begin(mac[index]);
Serial.print("IP Address = ");
Serial.println(Ethernet.localIP());
#endif
}
void cardInit()
{
// we'll use the initialization code from the utility libraries
// since we're just testing if the card is working!
if (!card.init(SPI_HALF_SPEED, chipSelect))
{
Serial.println("Initialization failed. Things to check:");
Serial.println("* is a card inserted?");
Serial.println("* is your wiring correct?");
Serial.println("* did you change the chipSelect pin to match your shield or module?");
return;
}
else
{
Serial.println("Wiring is correct and a card is present.");
}
// print the type of card
Serial.print("\nCard type: ");
switch (card.type())
{
case SD_CARD_TYPE_SD1:
Serial.println("SD1");
break;
case SD_CARD_TYPE_SD2:
Serial.println("SD2");
break;
case SD_CARD_TYPE_SDHC:
Serial.println("SDHC");
break;
default:
Serial.println("Unknown");
}
// Now we will try to open the 'volume'/'partition' - it should be FAT16 or FAT32
if (!volume.init(card))
{
Serial.println("Could not find FAT16/FAT32 partition.\nMake sure you've formatted the card");
return;
}
// print the type and size of the first FAT-type volume
uint32_t volumesize;
Serial.print("\nVolume type is FAT");
Serial.println(volume.fatType(), DEC);
Serial.println();
volumesize = volume.blocksPerCluster(); // clusters are collections of blocks
volumesize *= volume.clusterCount(); // we'll have a lot of clusters
if (volumesize < 8388608ul)
{
Serial.print("Volume size (bytes): ");
Serial.println(volumesize * 512); // SD card blocks are always 512 bytes
}
Serial.print("Volume size (Kbytes): ");
volumesize /= 2;
Serial.println(volumesize);
Serial.print("Volume size (Mbytes): ");
volumesize /= 1024;
Serial.println(volumesize);
}
void printDirectory(File dir, int numSpaces)
{
while (true)
{
File entry = dir.openNextFile();
if (! entry)
{
//Serial.println("** no more files **");
break;
}
printSpaces(numSpaces);
Serial.print(entry.name());
if (entry.isDirectory())
{
Serial.println("/");
printDirectory(entry, numSpaces + 2);
}
else
{
// files have sizes, directories do not
unsigned int n = log10(entry.size());
if (n > 10)
n = 10;
printSpaces(50 - numSpaces - strlen(entry.name()) - n);
Serial.print(" ");
Serial.print(entry.size(), DEC);
DateTimeFields datetime;
if (entry.getModifyTime(datetime))
{
printSpaces(4);
printTime(datetime);
}
Serial.println();
}
entry.close();
}
}
void printSpaces(int num)
{
for (int i = 0; i < num; i++)
{
Serial.print(" ");
}
}
void printTime(const DateTimeFields tm)
{
const char *months[12] =
{
"January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
};
if (tm.hour < 10)
Serial.print('0');
Serial.print(tm.hour);
Serial.print(':');
if (tm.min < 10)
Serial.print('0');
Serial.print(tm.min);
Serial.print(" ");
Serial.print(months[tm.mon]);
Serial.print(" ");
Serial.print(tm.mday);
Serial.print(", ");
Serial.print(tm.year + 1900);
}
void SDCardTest()
{
Serial.println("\n===============================");
Serial.print("SDCard Initialization : ");
if (!SD.begin(chipSelect))
{
Serial.println("failed!");
return;
}
Serial.println("done.");
File root = SD.open("/");
printDirectory(root, 0);
Serial.println("done!");
}
void setup()
{
Serial.begin(115200);
while (!Serial && millis() < 5000);
delay(500);
Serial.print(F("\nStarting FTP_Server_SDFAT2 on "));
Serial.print(BOARD_NAME);
Serial.print(F(" with "));
Serial.println(SHIELD_TYPE);
Serial.println(FTP_SERVER_TEENSY41_VERSION);
// Uncomment this if Teensy 4.0 has SD card
#if (defined(ARDUINO_TEENSY41))
Serial.println("Initializing SD card...");
//////////////////////////////////////////////////////////////////
cardInit();
////////////////////////////////////////////////////////////////
SDCardTest();
//////////////////////////////////////////////////////////////////
#endif
initEthernet();
// Initialize the FTP server
ftpSrv.init();
ftpSrv.credentials( FTP_ACCOUNT, FTP_PASSWORD );
Serial.print("FTP Server Credentials => account = ");
Serial.print(FTP_ACCOUNT);
Serial.print(", password = ");
Serial.println(FTP_PASSWORD);
}
/*******************************************************************************
** **
** MAIN LOOP **
** **
*******************************************************************************/
void loop()
{
ftpSrv.service();
// more processes...
}