Skip to main content
Version: FILS English

Description

The goal of the project is to showcase the knowledge gained throughout the semester by creating functional hardware that runs software written in Rust.

Deliverables

The deliverables will be stored in two places:

  • the source code will be stored on Github
  • the project documentation will be stored on Gitlab, by creating a fork of the course's website

The documentation repository should contain:

  • the full documentation of the project, in the index.md file
    • a description of the functionality
    • the motivation for choosing the project
    • the architecture
      • a description of all components and how they interconnect
      • a diagram drawn in diagrams.net or similar
    • a weekly log of the project status
    • hardware design
      • a description of the hardware used
      • a schematic drawn in KiCad EDA or similar
      • photos of the device
    • software design
      • detailed design
      • functional diagram
    • bill of materials (hardware and software)
  • the photos and other files required by the index.md file
warning

You need to work in a fork of this website's Gitlab repository and not in a blank one, in order to create a merge request, as described below.

The source code repository should contain:

  • a brief documentation - the repository's README.md file
    • short description of the functionality
    • requirements (hardware and software)
    • brief hardware and software design, including diagrams
  • software source code

The repositories will be checked by the lab assistant at during lab reserved for the project. Uploading code on the last day of the software milestone is not allowed. The assistant will check that students have submitted regular commits to the repository.

Students will have to build and showcase the hardware with the running software at PM Fair. On the presentation day, students will upload the source code to the hardware and the demo will be done live in front of the committee.

How to create a page for your project?

  1. Please login with your UPB login to Gitlab
  2. You will have to add an SSH Key to your Gitlab account. This will allow you to push code without entering you username and password every time. For this, run the following command in the Windows/Linux/macOS's console: ssh-keygen -t rsa -b 2048. Press press ENTER until you exit the respective command prompts.
  • If your command prompt Overwrite (y/n)? press n and run the above command again, changing the destination of the key.
  • If the key was generated successfully, you will have the keys generated in the location indicated by the command Enter file in which to save the key (C:\Users\"NAME"/.ssh/id_rsa):
  • Read the content of the file id_rsa.pub or the name you gave to the file and transfer it to Github.
  • Login to Gitlab and go to: SSH Keys.
  • Click on Add new key and insert into the Key textbox your key from id_rsa.pub.
  • Be very careful about the expiration date of the ssh key, change the expiration date otherwise it is set to 30 days.
  1. Download Git from the official website and access it in the command line using git -v to check if it was installed correctly. You might have to use Git Bash.

  2. Navigate to the website's Gitlab repository and create a public fork by clicking on the button in the top right corner.

  3. Clone the newly created repository by running git clone git@gitlab.cs.pub.ro:<gitlab_username>/pmrust.pages.upb.ro.git, where <gitlab_username> is replaced by your gitlab username.

  4. Now you have your own clone. You need to create a new branch. For this, follow the steps:

  • Run the command: git fetch followed by the git pull command
  • The branches have the following naming convention: project/your_curs.upb.ro_username. Example: project/andrei_paul.zamfir
  • To create a new branch:
    • git checkout -b <branch_name>
    • git push --set-upstream origin project/your_curs.upb.ro_username
  1. To start creating your page for the project, go to website/versioned_docs/version-acs_cc/project/2025 and create a new directory with your curs.upb.ro username. Example: andrei_paul.zamfir.

  2. In that directory you must create a file named index.md which will be your project page. You can take a look at the Markdown syntax. You can look at last year's projects and template

  3. After finishing the project, make a merge request to the upstream repository

Hardware Rules

  1. Projects have to use a microcontroller (MCU) that is capable of running Rust code. Examples of MCUs are nRF52, RP2040, ESP32 (RISC-V version).
  2. Usage of a development board is encouraged, but not required, a custom PCB can be built. Example of development boards are:
  1. The hardware part may be designed either using a breadboard and jumper wires, a prototype board (solder breadboard) or a PCB. If you want to use prototyping boards, ask the lab coordinator for help with soldering during lab hours.

Software Rules

It has to run software written in Rust. Students can use:

Project Rules

  1. Copying schematics or source code from the Internet is not allowed. Any attempt to copy the project will be accompanied by the corresponding repercussions.
  2. The project is individual, any attempt at collaborative work will be sanctioned, students can also carry out projects that interact, but the work must be separate.
  3. Any problem or blockage you have will be discussed with the lab assistant during project work hours.
  4. Students are strongly encouraged to ask the lab assistant questions about the project.
  5. The presentation of all the milestones is mandatory.
  6. The project topic must be established in week 4 and approved by the lab coordinator by week 6. After week 6, the topic cannot be changed.
  7. The laboratory supervisor may modify the topic or propose another topic if it is not complex enough for this project.
  8. We encourage you not to use prebuilt kits, you may get less points for the hardware part.

Requirements

  1. Complexity: The project must reflect at least 40 hours of work and contain elements learned during the year.
  2. Documentation: Complete documentation of the implementation for both hardware and software.
  3. Functionality: The hardware device has to be fully functional.

The IoT stream has to use the networking (WiFi, Bluetooth or Ethernet).

Example Projects

Examples of projects from past years

  1. Projects from 2024
  2. https://ocw.cs.pub.ro/courses/pm/prj2022
  3. https://ocw.cs.pub.ro/courses/pm/prj2023

Outstanding Projects

  1. POV - DAVIC picTronics
  2. Ryobo - Computer Vision & Object Following
  3. Plug & Play ChatGPT
  4. VENDING MACHINE

Grading

PartDeadlinePoints
Documentation MilestoneLab 90.5p
Hardware MilestoneLab 110.5p
Software MilestoneLab 120.5p
PM FairTBD1.5p
Total3p

F.A.Q

Q: Can I use another programming language, not Rust?
A: No, the main focus of the project is to learn to work with microcontrollers using Rust.

Q: Can I use a different framework than embassy-rs?
A: Yes, we suggest taking a look at RTIC or Tock.

Q: What if the PCB arrives after the hardware milestone?
A: You will only present the diagram for the hardware part and if there is a prototype using breadboard, but at the end of the project you must necessarily have the PCB printed and functional.

Footnotes

  1. Some function of this board, like WiFi, might not be supported in Rust.

  2. ESP32 provides its own Rust SDK described in the The Rust on ESP Book.