Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

57 total results found

Are Raspberry's DSI screens supported?

Interfaces and peripherals

No, they aren't.

Can data be stored on the SD card if the OS (by default) is installed on the eMMC?

Operating systems (OS)

Of course.

Does URVE Pi have a built-in watchdog? Does it run in the basic configuration?

Operating systems (OS)

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?

Hardware

Only for the right OQ (order quantity).

Is it possible to upload firmware using the USB C port?

Operating systems (OS)

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

General URVE Pi

Default credentials: Login: linaro Password: linaro

Please let me know how to flash the OS without having access to windows.

General URVE Pi

You can use the flashing library on Linux: https://github.com/rockchip-linux/rkdeveloptool.

Do we have instruction to flash Android to URVE Pi?

General 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

General

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...

Android
Linux
URVEPi
OTG
RS232
Debug UART
UART

Home Assistant

General URVE Pi

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

General

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...

troubleshooting
ethernet
problem

URVEPi Tips&Tricks

General

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...

Debian
Linux
Tricks

How to use SPI

General

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...

SPI
URVEPi
Python
Node

How to use SDL2 on URVEPi

General

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

General

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

Hardware

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, ...

Hardware
Benchmark

Connecting to URVEPi Debug UART

General

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...

Android
Linux
URVEPi
OTG
RS232
Debug UART
UART

Debian 11 Autostart

Operating systems (OS)

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...

Linux
Debian
URVEPi
autostart

Activating OTG Mode

Operating systems (OS)

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, ...

URVEPi
OTG
RS232
Android Studio
Android

CAN Communication

General A18i

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...