-
Older Activity
-
Yesterday, 11:22 PM
Wow is right. I have spent the last two weekends working on FTP_Server_Teensy41 and WiFiNINA. The problem is with data.connected() always shows 1. Using the same library with QNEthernet would show data.connected() going...
140 replies | 1850 view(s)
-
05-20-2022, 01:56 AM
Alright, Went back to Native Ethernet and QNEthernet using FTP_Server_Teensy41 latest version and had no problems transferring files back and forth between the client and server using Filezilla and gFTP. All transfers...
140 replies | 1850 view(s)
-
05-19-2022, 10:17 PM
Thanks for the input> I am still learning this stuff:) What is the proper way to determine that the transfer is complete? Does the client close the connection?
140 replies | 1850 view(s)
-
05-19-2022, 01:27 AM
Sorry for a delayed reply. Down 4 people at work so not having to much time to play. I have however had moments to integrate WiFiNINA to FTP_Server_Teensy41. It works fine if not transferring files. From what I am...
140 replies | 1850 view(s)
-
05-16-2022, 12:36 AM
I have SimpleFTPServer so messed up I will have to start over with it. I think now that I have FTP_Server_Teensy41 working, I'll try to add WiFiNINA to it as a base to work from. It is easier to adapt to and debug. Use...
140 replies | 1850 view(s)
-
05-15-2022, 11:36 PM
@mjs513, @Khoih-prog - Was working with FTP_Server_Teensy41 today to try and figure out why I was only getting partial transfers when downloading from the T4.1 to the PC using gFTP or Filezilla. Turns out the failure...
140 replies | 1850 view(s)
-
05-14-2022, 07:42 PM
@Paul, @KurtE, @mjs513 - Decided to test the latest with USBhost_t36. I tested with TD1.57B1 first Paul's latest and then Kurt's latest. found no issues.
Here is output from Kurt's active branch of USBHost_t36....
1233 replies | 57630 view(s)
-
05-14-2022, 05:49 PM
@mjs513 - Decided to check out this version of FTPServer using QNEthernet on the the T4.1:
https://github.com/khoih-prog/FTP_Server_Teensy41
It works in passive mode but still has file transfer problems that we are...
140 replies | 1850 view(s)
-
05-13-2022, 03:26 AM
@mjs513 - I was able to get as far as you did. Noticed that uploading or downloading would create a file but the actual file did not transfer. File size was zero. Also used the basic ftp command to check out make and...
140 replies | 1850 view(s)
-
05-12-2022, 11:08 PM
Thanks Mike. It gets confusing at times:) To many variations on variations...
140 replies | 1850 view(s)
-
05-12-2022, 10:55 PM
I noticed that 'simpleFTPServer' was not included in p#117. Is your working version available?
140 replies | 1850 view(s)
-
05-12-2022, 11:35 AM
@mjs513 - That's great news:) Can't wait to try it out tonight. Nice job...
140 replies | 1850 view(s)
-
05-11-2022, 11:44 PM
I think now I have passive mode figured out. In the main sketch we have this in setup():
// ftpSrv.setCallback(_callback);
// ftpSrv.setTransferCallback(_transferCallback);
After commenting these out I...
140 replies | 1850 view(s)
-
05-11-2022, 09:59 PM
No I'm not. Only for uploading new firmware. I'm going to keep picking at it and see what I can come up with. I just wonder if it still has to do with the speed of the T4.1. From what the specs say SPI speed is 8MHz to...
140 replies | 1850 view(s)
-
05-11-2022, 01:38 AM
Was playing with this after work tonight. the server is really unstable. I can connect and get a directory listing and then change back and forth between directories. When I try to disconnect Filezilla the T4.1 locks up...
140 replies | 1850 view(s)
-
05-10-2022, 01:06 AM
@mjs513 - I zipped up everything that I have at this point that is working including the original Arduino FtpServer by Jean-Michel Gallego. I spent all of last Sunday modifying his latest version which finally led me to...
140 replies | 1850 view(s)
-
05-09-2022, 10:25 PM
I think it is the accept branch. One more thing that I did not remember yesterday Is that in the site manager you have to also set Active mode in the transfer tab.
Like This:
The leftmost icon on the menu bar...
140 replies | 1850 view(s)
-
05-09-2022, 12:31 AM
@mjs513 - Here is a screen shot of connection with Filezilla:
This is what I have with handleFTP():
uint8_t FtpServer::handleFTP() {
#ifdef FTP_ADDITIONAL_DEBUG
// int8_t data0 = data.status();
ftpTransfer...
140 replies | 1850 view(s)
-
05-08-2022, 11:46 PM
3.46.3. I noticed that you selected FTP->Active. Just click on FTP and you will see a bullet for 'Passive (recommended)' and below that you will see another bullet 'Active' click on the 'Active' bullet.
140 replies | 1850 view(s)
-
05-08-2022, 10:46 PM
@mjs513 - It's alive!!! In Filezilla I switched to active mode and got a directory listing.
This is what i saw on the Teensy side:
Connected to wswn
IP address: 192.168.0.113
SD opened!
NOT ANONYMOUS
wwatson
...
140 replies | 1850 view(s)
-
05-07-2022, 10:51 PM
I have done that a couple of times already. I really hate when I do that:) I had an FTP sever working with the ESP8266 and WifiSPI on the T3.6. I am going to find it (SOMEWHERE) and see if I can get some clues....
140 replies | 1850 view(s)
-
05-07-2022, 10:03 PM
@mjs513 - Here is what I have now:
Status: Connecting to 192.168.0.113:21...
Status: Connection established, waiting for welcome message...
Status: Plain FTP is insecure. Please switch to FTP over TLS....
140 replies | 1850 view(s)
-
05-07-2022, 09:20 PM
Have not tried with any other hardware. Just now got to the same point as @mjs513. I do have an Adafruit ESP32 Hazzah that I was trying to use with nina-1.7.4 but that did not work. Probably due to a possible difference...
140 replies | 1850 view(s)
-
05-07-2022, 07:56 PM
Yep. It looks like there are other things that need to be setup as well for SD info like file size and total size.
This is a link to the author of SimpleFTPServer web site that shows how to setup SimpleFTPServer:...
140 replies | 1850 view(s)
-
05-07-2022, 07:42 PM
I was using Adafruit's 1.7.4 version. I fork your Repo and try that. As far as the SD access goes I am getting these warnings:
/home/wwatson/Arduino/libraries/SimpleFTPServer/FtpServer.cpp: In member function 'bool...
140 replies | 1850 view(s)
-
05-07-2022, 06:42 PM
@mjs513 - Nice progress:) Better than what I am getting here. I have the firmware updated but am only getting _callback messages that you were getting before. Are you still working with SimpleFTPServer?
140 replies | 1850 view(s)
-
05-06-2022, 11:17 PM
@mjs513 - It's finally the weekend so I should have time to play more with this. At least things are progressing:) Also waiting for TD1.57B1...
I think there are still changes that will have to be made to the FTP...
140 replies | 1850 view(s)
-
05-06-2022, 12:38 AM
Mike - I tried changing the clock speed at first all the way down to 24 Mhz with no success. So tonight after work I came home and thought what is the biggest problem we have with super sonic T4.x, delays:) Now onto...
140 replies | 1850 view(s)
-
05-05-2022, 11:54 PM
@All - Got SerialESPPassthrough.ino working with the Adafruit Airlift Featherwing. Was able to upload NINA_W102-1.7.4.bin an it successfully ran the ScanNeworks.ino sketch:)
Boy do I feel silly. It was basically two...
140 replies | 1850 view(s)
-
05-05-2022, 04:00 AM
Well, I think maybe I'll start with the ESP32 sequence for putting it into upload mode. Then use a FTDI and bypass the Teensy passthrough with buttons or something. Need to research it:) The Teensy is so much easier to...
140 replies | 1850 view(s)
-
05-05-2022, 01:23 AM
@mjs513 - I have not got even close to what have done. Adafruit's instructions are nothing more than confusing. You really do not know what combinations of instructions to use. I think if you were using one of there...
140 replies | 1850 view(s)
-
05-04-2022, 12:40 AM
Thanks guy's. I have a FTDI device that is breadboard friendly I bought when playing with the propeller device from Parallax. I'll try that...
140 replies | 1850 view(s)
-
05-03-2022, 10:26 PM
@KurtE, mjs513 -From what I am seeing in Adafruits instructions for reflashing the Airlift Featherwing, you should be able to use a Teensy to upload the new firmware to the Airlift. If I am reading there instructions...
140 replies | 1850 view(s)
-
05-03-2022, 12:02 AM
To be honest, @mjs513 got further with it. Check posts #30 on. Nobody is an idiot:) They just need more information and time to gather that information. I usually don't have time during the week to play with this stuff....
140 replies | 1850 view(s)
-
05-02-2022, 11:43 PM
@All - As far as the sense codes go and that big list of names I have only seen one instance where I used it to discover that a PNY 64Gig thumb drive had magically write protected itself. It was the only time a sense...
568 replies | 35545 view(s)
-
05-02-2022, 01:48 AM
@Case - These libraries are in a heavy state of change right now. With the upcoming TD1.57 Beta 1 all of the libraries that rely on USBHost_t36, UsbMscFat, SD, SdFat should be in a usable state. Anything before will...
568 replies | 35545 view(s)
-
05-01-2022, 10:50 PM
Definitely interested...
Thanks
140 replies | 1850 view(s)
-
05-01-2022, 10:15 PM
I ran out of time this weekend to do anymore with this. I checked the version of NINA on the Adafruit Airlift FeatherWIng I have. It is version 1.2.2. I also have an Adafruit ESP32 WROOM that I loaded up with NINA...
140 replies | 1850 view(s)
-
05-01-2022, 04:30 PM
Yeah, I am not sure if I have missed something in defines that is not set properly or what. Still looking...
140 replies | 1850 view(s)
-
05-01-2022, 03:57 PM
Got my Airlift Featherwing last Thursday. After connecting it to a T4.1 I was able to successfully run all of the example sketches I tried. Downloaded SimpleFTPServer from here:
https://github.com/xreef/SimpleFTPServer...
140 replies | 1850 view(s)
-
04-24-2022, 06:11 PM
@shawn - Problem solved:) It does allow me to connect using '.local'. Thanks for the hints:)
120 replies | 10498 view(s)
-
04-24-2022, 06:00 PM
Thanks. I'll check it out. As you can tell I am really new to all of this:)
120 replies | 10498 view(s)
-
04-24-2022, 04:06 PM
Thanks, I did try without the '.local' but it failed to connect as well. I cannot remember if I tried with NativeEthernet. I will try it again.
120 replies | 10498 view(s)
-
04-24-2022, 03:28 PM
@shawn - I have been working with a T4.1, Arduino 1.8.19 and TD1.56. I am redoing an FTP client that was working with WiFiSPI on an esp8266. I now kind of have working with QNEthernet. There are a couple of issues...
120 replies | 10498 view(s)
-
04-21-2022, 03:50 PM
Thanks, Will try it.
Edit: Went over my wiring this morning and found a couple of mistakes. I fixed those and now the red led on the Huzzah turns on flashes in sync with the led on the T4.1(SCK). I think there is...
9 replies | 8569 view(s)
-
04-21-2022, 01:32 AM
@mstiller - Been playing with WiFiNINA and the Adafruit ESP32 Huzzah Feather. I am not totally sure WiFiNINA works with it. I Flashed the ESP32 with the latest Adafruit WiFiNINA firmware which was successful and...
9 replies | 8569 view(s)
-
04-12-2022, 09:54 PM
That has bit me more than once:) Would be nice if there was some kind of standardized color coding for charge only USB cables.
Glad that took care of it...
3 replies | 135 view(s)
-
04-12-2022, 03:20 AM
What was everything else? Shorter USB cables should not make a difference. Make sure the longer cables are not charge only cables. They do not have the data lines connected...
3 replies | 135 view(s)
-
04-11-2022, 11:19 PM
@KurtE - Great Stuff!! Just downloaded and will try it out. Been playing with dual serial which is also working well.
Going through all of my old boards and testing serial comms through a T4.1 USB host port. Just...
3 replies | 307 view(s)
-
03-28-2022, 10:27 PM
Thanks for the response Kurt. When I originally started FM about 3-4 years ago the memory allocation is what took the longest to setup. I was constantly finding memory leaks. I eventually with a lot of web searching and...
1233 replies | 57630 view(s)
-
03-27-2022, 09:58 PM
This afternoon I went back to working on my file manager. I realized I had boxed myself into a corner with the way I was allocating memory for directory entries. I all came to light when I was using qsort() to sort the...
1233 replies | 57630 view(s)
-
03-27-2022, 06:42 PM
@KurtE - Updated and made the changes to boards.txt. Got the same results as you did:)
In Linux it came out to '/dev/ttyACM0' and '/dev/ttyACM1'.
1233 replies | 57630 view(s)
-
03-27-2022, 03:01 PM
@KurtE - Saw what you were doing on your GitHub. I was wondering how dual serial worked. I think I understand it's purpose now. I use Minicom in Linux a lot with DiskioMB for testing. Been refreshing my memory with...
1233 replies | 57630 view(s)
-
03-26-2022, 08:08 PM
Thanks. Time to play... Having fun with this:)
1233 replies | 57630 view(s)
-
03-26-2022, 07:45 PM
I updated MTP_Teensy-fast_start and SdFat-Fat12. I got the same results as you did with $$c and $$d. I am not sure how to edit code.py with the above. Actually I need to finish getting the rest of Circuitpython setup...
1233 replies | 57630 view(s)
-
03-26-2022, 03:15 PM
@KurtE, @mjs513 - Got really curious to see if DiskIO would recognize a T4.1 loaded with Circuitpython. Loaded the MM with DiskioMB and plugged in the T4.1 that was loaded with circuitpython through a hub along with a...
1233 replies | 57630 view(s)
-
03-26-2022, 12:00 AM
I am confused... This thread shows 47 pages:
https://forum.pjrc.com/threads/68139-Teensyduino-File-System-Integration-including-MTP-and-MSC.
But when I click on page #47 it stays a page #46??? Am I missing...
0 replies | 81 view(s)
-
03-25-2022, 01:44 AM
@KurtE - After downloading the latest version of MTP_Teensy-fast_start, UsbMscFat-decouple and USBHost_t36-main from TD1.56 I used one my MicroMod ATP and a T4.1 to duplicate what you did in P#1147. The results were the...
1233 replies | 57630 view(s)