Page 1 of 1

FAQs

Posted: 29 Jul 2024, 22:45
by robotwf
Here will be answers to the most frequently asked questions regarding STM, Arduino, and OPI/RPI.

What operating systems can be installed on Raspberry Pi/Orange Pi?

Posted: 29 Jul 2024, 22:52
by robotwf
Which OS can be installed on Raspberry Pi/Orange Pi?

For single-board computers, there are many Unix-like operating systems available, mainly distributions like Ubuntu, Debian, and CentOS. You can also install Android and Windows (which is a bit more complex).

For Raspberry Pi, the most common OS options can be viewed in the Raspberry Pi Imager itself.
image (2).png
image (2).png (42.63 KiB)
Viewed 2800 times
image (3).png
image (3).png (41.49 KiB)
Viewed 2800 times
For Raspberry Pi, there are even distributions of Android and special OSes designed for managing 3D printers.

The most common operating systems for Orange Pi can be viewed on their official website by selecting the Downloads section on the page of your Orange Pi version.
There are official distributions supported by the Orange Pi developers:
image (4).png
image (4).png (60.94 KiB)
Viewed 2800 times
As well as custom ones, they have lower stability, but can boast various features, such as a unique interface or a narrow specialization of the system:
image (5).png
image (5).png (40.99 KiB)
Viewed 2800 times

How do Orange Pi and STM32 work together and communicate?

Posted: 29 Jul 2024, 23:02
by robotwf
How do Orange PI and STM32 work together simultaneously?

There are several ways to communicate between different microcontrollers. In our constructor, we use the UART (Universal Asynchronous Receiver/Transmitter) protocol, which is the oldest and most common physical data transmission protocol today.

Data transmission is achieved using a USB TTL UART converter. It looks like this:
image.png
image.png (128.14 KiB)
Viewed 2798 times
The Rx Tx pins are connected to the STM32, while on the other side there is a Mini USB connector that is connected to the Orange Pi. More details about UART can be found on our forum in the STM32 Tutorials.