Category Archives: development

Realtek 8152 GbE USB kernel driver for RK3399

      Comments Off on Realtek 8152 GbE USB kernel driver for RK3399

If you have trouble with Realtek 8152 GbE USB device on your Rock960A/B/C board with error of “unnmaed net_device” ? It is reason of built in r8152 driver is too old in Rock960a/b/c (even all kernel driver of Rockchip) kernel source. Here’s my modified driver from latest version of r8152… Read more »

Make Image ‘O HDR fresh updated!

      Comments Off on Make Image ‘O HDR fresh updated!

‘Make Image ‘O HDR’ has been updated to version 0.2.20.70, and it provides save current setting to user’s space – it is each different place for platform types; Windows, Linux and MacOSX. You can clone sources or, download binary image here: https://bitbucket.org/rageworx/make_img_o_hdr/src/master/  Strongly recommend to build source code if your… Read more »

A simple utility for monitoring CPU clocks and temperature for embedded system.

      Comments Off on A simple utility for monitoring CPU clocks and temperature for embedded system.

This simple console based application is an open source for monitoring current CPU clocks and temperature include GPU if availed. Repository URL : https://bitbucket.org/rageworx_embedded/cpuclkmon You can clone, or download source and build own yourself, or just download pre-compiled binary and launch it for your system.

Writing RGB or GREY buffer into a JPEG file

      Comments Off on Writing RGB or GREY buffer into a JPEG file

Import issue: This example code is for Linux ( or possible for MacOSX ). and .. Fixed some wrong code Makefile It must be declared to link with jpeg library in system, or it should not be switched with turbo-jpeg. LFLAGS += -ljpeg Code for jpeglib. #include <jpeglib.h> int writejpeg(… Read more »

V4L2 + V4l-utils, Capture for multi-planar #2

      Comments Off on V4L2 + V4l-utils, Capture for multi-planar #2

This post was continued from “V4L2 + V4l-utils, Capture for multi-planar #1“ Querying external controls Getting external control should be an optional job, but it maybe needed to control brightness and gain for good to get excellent balanced image. Little bit difficult to understand in first time but can be… Read more »

V4L2 + V4l-utils, Capture for multi-planar #1

      Comments Off on V4L2 + V4l-utils, Capture for multi-planar #1

It was very hard to find out how it works until I made it by myself in multiple times. As we maybe already knows – Always comes mind peace when I have the answer, right – It was maybe very easy but very hard to know, not kindly explained anywhere… Read more »

Easy way to build Rock960 ARM64 system image.

      Comments Off on Easy way to build Rock960 ARM64 system image.

Why need to do this? 96Board developing team only provides armhf ( arm 32bit ) pre-build images in officially. But some people as like me, are need to use AARCH64 for better performance. This article is for people who demands runs Rock960 board on AARCH64. Preparation x86.64bit debian based Linux,… Read more »

Rock960b/c debian stretch prebuild system image for AARCH64

      Comments Off on Rock960b/c debian stretch prebuild system image for AARCH64

Currently 96rock’s (VAMRS) Rock960 board officially published for debian stretch image for 32bit ( they aren’t published for AARCH64 ), so I rebuilt their open source for supporting nvative AARCH64 at all with bundled LXDE. Download link: Rock960B ( RK3399 + 4GB lpDDR3 + 32GB eMMC ) https://mega.nz/#!cp1wRSZS!Lg35IENdY7eyzCLT5PpYZc81b3XCZexUYq9n46YP_ig Rock960C (… Read more »

Create HBITMAP from Fl_RGB_Image

      Comments Off on Create HBITMAP from Fl_RGB_Image

Here is a simple code for convert Fl_RGB_Image to HBITMAP. HBITMAP GetHBMPfromFlRGBImg( const Fl_RGB_Image* src ) { if ( src == NULL ) return NULL; if ( src->d() != 4 ) /// Accepts only for RGBA 4 depth. return NULL; BITMAPINFOHEADER bmih = {0}; bmih.biSize = sizeof(BITMAPINFOHEADER); bmih.biWidth = src->w();… Read more »