2023-11-12 02:04 PM
Hey! I want to test the functionalities of EMW3080 wifi module using the given example. When I run http command as shown in the readme file, it should download the example .bin file. Where can I find the file's location? I looked into the http_file_download function and it seems to only store the file in a local varible called p_buffer and calls tx_byte release(p_buffer) when exits the function. There seems no action to store it in the flash or somewhere? Thanks!
Solved! Go to Solution.
2023-11-13 03:03 AM
It depends. If you know how to move an array in memory to external or internal flash, or SD card, or other storage then you can. Else you cannot)) Also, IIRC these external wi-fi devices have their own internal flash (not sure about the EMW3080 on that board) and can download a file from internet to their internal memory without interference of the host; using some other commands (not via the sockets API). Then the host can read that file.
2023-11-12 03:32 PM
2023-11-12 06:38 PM
So there's no way that I can get the downloaded file?
2023-11-13 03:03 AM
It depends. If you know how to move an array in memory to external or internal flash, or SD card, or other storage then you can. Else you cannot)) Also, IIRC these external wi-fi devices have their own internal flash (not sure about the EMW3080 on that board) and can download a file from internet to their internal memory without interference of the host; using some other commands (not via the sockets API). Then the host can read that file.