Advanced Search
Search Results
60 total results found
Are Raspberry's DSI screens supported?
No, they aren't.
Can data be stored on the SD card if the OS (by default) is installed on the eMMC?
Of course.
Does URVE Pi have a built-in watchdog? Does it run in the basic configuration?
It doesn't run in the basic configuration, but adding it to the kernel is trivial, as well as turning it on and "feeding" it.
Are there URVE Pi versions with more memory than 8GB?
Only for the right OQ (order quantity).
Is it possible to upload firmware using the USB C port?
No, USB 2.0 OTG port is used for flashing the OS.
I would like to create SSH connection with newly purchased URVE board PI. What is the root password for the initial connection
Default credentials: Login: linaro Password: linaro
Please let me know how to flash the OS without having access to windows.
You can use the flashing library on Linux: https://github.com/rockchip-linux/rkdeveloptool.
Do we have instruction to flash Android to URVE Pi?
The installation procedure for Android is the same as for Linux. More details in our user manual here: https://urveboard.com/pi/files.
URVEPi Compatible Shields
Raspbery Pi PoE HAT Raspbery Pi PoE HAT works out of the box. However, it requires 16mm standoffs for proper installation. You can easily purchase the necessary standoff set by searching the internet for "Raspberry Pi Standoff Set - 16mm". It is recommended to...
Home Assistant
Installation steps on SD Card Currently it is possible to install home assistant on sd card due to the size of home assistant. Boot version should be from 2023.02.22. You can check boot date with command uname -v. Format SD Card and create new partition # fo...
URVEPi Troubleshooting
Troubleshooting Tips for URVEPi's Disappearing Ethernet and Rebooting Issues. If you are experiencing disappearing Ethernet or rebooting during heavy load on your URVEPi, it could be due to low power supply. This may happen when your URVEPi is not receiving en...
URVEPi Tips&Tricks
Python and IDLE3 in URVEPi Debian 11 Python3 is installed by default. To install IDLE3 just type in terminal apt install idle3 IDLE will show in Applications / Development menu. Office in URVEPi Debian 11 LibreOffice can be easily installed via apt. To instal...
How to use SPI
We provide some examples for SPI URVEPi usage. Python, C++ and Node.js. Below you can see how to use SPI with this languages. How to use URVEPi SPI with Python For Python we need to install spidev library. It's very easy. Just type in your root account: git cl...
How to use SDL2 on URVEPi
sudo apt-get install -y libsdl2-dev build-essential nano nano sdltest.c #include <SDL2/SDL.h> int main(int argc, char* argv[]) { SDL_Window* window = NULL; SDL_Renderer* renderer = NULL; SDL_Init(SDL_INIT_VIDEO); window = SDL_CreateWindow("...
How to use I2C
PCF8574T with 1602A display As an example we will use PCF8574T with 1602A display. We need to connect URVEPi VCC5, GND, I2C1_SDA and I2C1_SCL to VCC, GND, SDA and SCL pins. For I2C1 we use Pin27 i Pin28. Detecting I2C device After connecting a device with PCF...
URVEPi Hardware Benchmark
URVEPi eMMC/USB2/USB3 URVEPi is a competitive single-board computer that boasts impressive performance, outpacing the popular Raspberry Pi in sequential read/write speed. With its fast read/write speeds, URVEPi is well-suited for a wide range of applications, ...
Connecting to URVEPi Debug UART
To use the Debug UART, you will need a UART-to-USB adapter, which will allow you to connect the UART to a computer via USB. Once you have connected the adapter and installed its driver, you can use a terminal emulator program such as PuTTY or Tera Term to com...
Debian 11 Autostart
To make a program or script run automatically when the Debian 11 operating system starts up, you can use the autostart feature. This can be accomplished by creating a .desktop file in the /etc/xdg/autostart directory. Steps Open a terminal window. Navigate...
Activating OTG Mode
By default, URVEPi operates all four USB ports in host mode. To switch the top-middle port to OTG mode and connect your PC to it using a USB-A cable, you need to do it manually. This means that you won't be able to transfer files from your USB-C connected PC, ...
CAN Communication
A good example demonstrating the CAN communication between two URVEBoard A18i and A18PRO requires two URVEBoards. Connect them with a wire plugged into CAN1 on the first board and CAN2 on the second board. Sending and receiving on first board # ip link set...