- Name: Shayan Majumder
- University: Birla Institute of Technology and Science, Pilani (BITS Pilani)
- Email:
- Personal: [email protected]
- University: [email protected]
- Linkedin: http://www.linkedin.com/in/shayan-79146519a
- IRC nick: shayanmajumder
- Github: https://github.com/ShayanMajumder
- Gitlab:https://gitlab.com/ShayanMajumder
- Phone: +91 98364 58276
- Country of Residence: India
- Timezone: IST (GMT + 0530)
- Primary Language: English
I am a second-year student pursuing a B.E. in Electrical and Electronics Engineering at Birla Institute of Technology and Science, Pilani (BITS Pilani). My primary interest lies in programming and space exploration. My semester will complete in mid-May, leaving me enough time to get ready for my GSoC project. If I am selected, I shall work around 25 hours a week on the project, though I am open to putting in more effort if the work requires. My other engagements during this summer will be my Practice School which is needed for my university credits.
CCSDS File Delivery Protocol (CFDP) is a file transfer protocol for use in space, e.g., between Earth and spacecraft in Earth orbit or between Earth and spacecraft on interplanetary missions. The CCSDS File Delivery Protocol (CFDP) has been implemented in Python by LibreCube. This project aims to make this the existing setup OS independent as well as make it compatible with micropython and hence extend its utilities as a ready-to-use space software. This will be demonstrated using the pyboard as the server and using UDP over WiFi. This project will also include extending the capabilities of the current system and testing the system exhaustively. The CFDP GUI application developed by LibreCube shall be used for this and will be extended/modified as needed.
Fig1: NodeMCU ESP32 WiFi development board Fig 2: CCSDS File Delivery Protocol (CFDP) forms the link between the application layer and the transport layer in the CCSDS protocol stackThe CCSDS File Delivery Protocol can operate a wide range of machine configurations, from effortless ground-to-air space to complex systems of orbiters and rovers supported by multiple terrains and transmission links. The protocol enables the delivery of raw files that work in a single paired communication network. The CFDP file delivery capability can deliver files to any network containing multiple links.
The protocol is independent of the technology used to use data storage and requires only basic file store skills to work. For example, It takes two file stores, one inside the spacecraft (client), the other is on the ground(server), and it works by copying data between two file store locations. It makes no assumptions about the data which is being transferred. It thus can be utilized for a wide range of applications involving the Filestore requests, Proxy operations, Directory listing request, Native filestore implementation, and file transfer, both acknowledged and unacknowledged.
MicroPython is a lean and efficient implementation of the Python 3 programming language that includes a small subset of the Python standard library and is optimized to run on microcontrollers and constrained environments. MicroPython is packed full of advanced features such as an interactive prompt, arbitrary precision integer, closures, list comprehension, generators, exception handling, and more. It is compact enough to fit and run within just 256k of code space and 16k of RAM. MicroPython aims to be as compatible with standard Python as possible to allow you to transfer code with ease from the desktop to a microcontroller or embedded system.
Some of the micropython programmable microprocessors that support WiFi are ESP8266(NodeMCU), ESP32, and WiPy/CC3200. The one I will be using for testing the system would be ESP32.
NodeMCU is an open-source firmware for which open-source prototyping board designs are available. The MicroPython software supports the ESP8266 chip itself, and any board with it will work. ESP 32 is an advanced version of this with additional capabilities including more RAM and Flash memory.
Fig 3: Thonny IDE for MicropythonFirst, I will ensure that the current CFDP project is fully OS independent with testing in Windows, macOS, Ubuntu, and some other LINUX distros. Then I will replace the existing libraries which are not yet implemented in micropython. For example- threading and queue libraries are not yet available in micropython packages but are crucial in the CFDP project.
The next stage will be testing PC to PC CFDP communication through WiFi. After this, I will start testing the functions by importing them to micropython and running it in the NodeMCU meanwhile trying simple WiFi communications with my PC. Once this is done, I will start testing and debugging the client-server applications one by one. After this, once a working setup is done in the command line, I will begin working in the python CFDP GUI. Later I will start working on adding more functionalities to the CFDP application.
-
Core Tasks:
-
Remove bit array dependency - The bit array package requires GNU CC to be installed (on Linux) and Visual C++ on Windows. Thus removing it will lighten the installation process. (Status - Done)
-
Remove dependency of Threading and queue - Currently, these modules are not supported on micropython, so replacing them would help port it. (Status - Ongoing)
-
Replace shutil and tempfile module - These modules need to be replaced by their micropython derivatives. (Status - To do).
-
Setup NodeMCU - The ESP32 MCU needs to be set up and importing the files and testing the functions by running it in the MCU. (Status - To do)
-
Setup Network and Socket module - These functions/modules for the NodeMCU need to be set up, tested, and made compatible with the CFDP module. (Status - To do).
-
Implementing Test Cases - The same test cases as for the Python implementation shall be exercised. (Status -To do)
-
Improve CFDP GUI - CFDP GUI application will be tweaked and improved as needed, and some features will be added. (Status - To do).
-
Add Not implemented functions in the CFDP project - Some of the recommended standards that haven’t been implemented will be implemented as needed. (Status -To do).
-
-
Proposed Solutions :
-
To remove bit array dependency, use native Python code for bit pattern manipulation/reading.
-
To remove threading, replacing it with _thread module seems feasible, replacing queue with an alternative to create a fixed-sized buffer used as a queue. An alternative to both these methods will be using the asyncio module implemented in micropython as uasyncio.
-
The shutil modules have been written in micropython as module micropython-shutil and use the normal file methods, and use random file names as a prefix to the temporary created file.
-
Will setup the whole library to be ported to NodeMCU by installing drivers and setting up the IDE. Using thonny IDE for writing code and ampy to upload files .
-
Implement the network module in ESP32 and initially test it out with PC by transmitting simple messages. Here are steps to connect with PC
-
To setup the module, we will use this code and thus run it as a server.
-
import network
wlan = network.WLAN(network.STA_IF) # create station interface
wlan.active(True) # activate the interface
wlan.scan() # scan for access points
wlan.isconnected() # check if the station is connected to an AP
wlan.connect('essid', 'password') # connect to an AP
wlan.config('mac') # get the interface's MAC adddress
wlan.ifconfig() # get the interface's IP/netmask/gw/DNS addresses
ap = network.WLAN(network.AP_IF) # create access-point interface
ap.active(True) # activate the interface
ap.config(essid='ESP-AP') # set the ESSID of the access point
-
Next, connect the PC to this network by WiFi by using the given id and password.
-
Next, use the socket module to create a server in the ESP8266 using the socket module.
#!/usr/bin/env python3
from socket import socket, gethostbyname, AF_INET, SOCK_DGRAM
import sys
PORT_NUMBER = 5000
SIZE = 1024
hostName = gethostbyname( '0.0.0.0' )
mySocket = socket( AF_INET, SOCK_DGRAM )
mySocket.bind( (hostName, PORT_NUMBER) )
print ("Test server listening on port {0}\n".format(PORT_NUMBER))
while True:
(data,addr) = mySocket.recvfrom(SIZE)
print(data)
sys.exit()
- Next run the client in my PC
#!/usr/bin/env python3
import sys
from socket import socket, AF_INET, SOCK_DGRAM
SERVER_IP = '192.168.137.1' #IP address of the host
PORT_NUMBER = 5000
SIZE = 1024
print ("Test client sending packets to IP {0}, via port {1}\n".format(SERVER_IP, PORT_NUMBER))
mySocket = socket( AF_INET, SOCK_DGRAM )
myMessage = "Hello!"
myMessage1 = ""
i = 0
while i < 10:
mySocket.sendto(myMessage.encode('utf-8'),(SERVER_IP,PORT_NUMBER))
i = i + 1
mySocket.sendto(myMessage1.encode('utf-8'),(SERVER_IP,PORT_NUMBER))
sys.exit()
-
The current version of the GUI will be improved by working on issue#8, issue #5, extended to support Class 2 transfer, and other added features as needed.
-
The same series F1 and series F2 tests designed for the Python CFDP project will be tested in micropython.
-
The features that haven’t been implemented will be implemented as needed by referencing CCSDS recommended standards.
-
Introduce myself and this project in Librecube IRC channel, LibreCube mailing list, and LibreCube Forum.
-
Remain in constant touch with my mentors using mail and IRC. Set up requirements and discuss the design details with mentors. Settle the final design according to needs and feasibility.
-
Discuss with mentors about the implementation plan.
-
Setup development environment and Taiga account for TODO list and weekly report.
-
Week 1 (June 7 - June 13)
-
Test the OS independency of the current Python CFDP project.
-
Start testing the NodeMCU and test simple transfers over WiFi.
-
-
Week 2-3 (June 14 - June 27)
-
Remove and test complete removal of dependency of modules such as threading and queues which are not supported by micropython
-
Start working on the removal of modules such as shutil and tempfile using alternatives.
-
Start working on setting up the transport layer using UDP, Networking, etc.
-
-
Week 4 -5 (June 28 - July 11)
-
Debug and make sure all functions work properly when imported in Micropython.
-
Test that the CFDP module is importable in Micropython and thus carries out client-server file transfers.
-
-
-
An OS-independent, easily portable library without any external dependencies.
-
This project’s full or partial working setup where MicroPython runs a CFDP server entity and a laptop or PC that runs a CFDP client entity and connects to it using UDP transport over WiFi.
-
-
Week 6-7 (July 17-25)
-
Start working on the CFDP-GUI adding additional features and making it a ready to use software.
-
Testing and debugging for the test cases on micropython.
-
-
Week 8 ( July 26 - August 1)
- Document the existing code and write a blog to show how to setup the micropython environment for working on this.
-
Week 9-10-11(August 2 - August 23)
-
Submit final merge request to the main branch
-
This time will also act as a buffer time incase I miss the present deadlines .
-
If all goes well I will start working on other projects under LibreCube. For example implementing CFDP protocol in GNU radio.
-
-
An OS independent Python CFDP library
-
A working setup of the CFDP project in micropython.
-
Proper documentation in the form of Pydocs and Blogs.
I have been working in space communications for some time now, and I seek to leverage my exposure by working with experienced people from the industry. This particular project interests me more since it would make it easier for future amateur space missions to easily integrate the protocol layers into their own system and reduce their work. My experience includes framing and deframing packets and extracting information in C and GNU Radio, a free and open-source signal processing toolkit. The CCSDS File Delivery Protocol MicroPython implementation would also help extend the utility of the current Python-CFDP project and help amateur space missions easily integrate it in their own system as well as help other earth based amateur projects get a reliable method of transferring files. I have also contributed to the LibreCube organization in decoding cluster frames, adding OMM support in the LinkPredict library and removing bitarray dependency for the Python CFDP project.