Hey peeps 馃挅

My name is Renzo (they/them, he/him). This place is the home on some of my thoughts and projects, covering all sorts of topics from tech to nature to politics.

Bookreview & random thoughts - On Palestine

On Palestine (2015), by Noam Chomsky and Ilan Papp茅, is a book on the past, present and future of Palestine. The book is divided into two parts: dialogs and reflections. In the dialogs Chomsky and Papp茅 talk together or alone under the guidance of Frank Barat. The goal is to understand the current (2014) situation and how the struggle for a free Palestine should continue. The second part of the book consists of some essays written by Chomsky and Papp茅....

August 1, 2024 路 4 min 路 Renzo Gort

Bookreview & random thoughts - Dit wil je 茅cht niet weten

Dit wil je 茅cht niet weten (2024), geschreven door Huib Modderkolk, is een echte masterklas van een non-fictie. Huib neemt ons mee in zijn onderzoek naar hoe de digitalisering ons leven be茂nvloed en welke gevaren hierbij spelen. Hierbij wordt hij zelf doelwit van hoogstwaarschijnlijk de Isra毛lische geheime dienst. In het boek komen vele interessante casussen naar voren, maar 1 wil ik hier extra op in gaan. Het is een stukje van maar 3 pagina鈥檚, maar die pagina鈥檚 leggen goed bloot wat de gevaren zijn van digitalisering....

July 29, 2024 路 3 min 路 Renzo Gort

MAIX (Canaan Kendryte k210) Embedded Linux - Rootfs with BusyBox

Enabling the MMC drivers in linux The first thing to do is to enable to MMC drivers in linux. To do this simply and fast we will just use another default config. Where in the previous chapter we used nommu_k210_defconfig we will now use nommu_k210_sdcard_defconfig. Besides that we will also tell linux to generate an specific target for use to use as dtb. Where we used k210_generic.dtb we will now use sipeed_maix_bit....

February 1, 2022 路 2 min 路 Renzo Gort

MAIX (Canaan Kendryte k210) Embedded Linux - Linux

Obtaining the linux source To start we first need the source files of linux so we can compile it. We will also use the --depth=1 option because we simple don鈥檛 need the massive history of linux on our disk. git clone https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --depth=1 cd linux Configuring linux First of we need the correct defconfig. To get the defconfig you need to run the make help command with the architecture of which you need the defconfig....

February 1, 2022 路 3 min 路 Renzo Gort

MAIX (Canaan Kendryte k210) Embedded Linux - U-Boot

Obtaining the u-boot source To start we first need the source files of u-boot so we can compile the bootloader. git clone https://source.denx.de/u-boot/u-boot.git cd u-boot Configuring the bootloader To find the correct default config look in the /configs directory. For us the defconfig sipeed_maix_bitm_defconfig is important. If you found the best default config you can apply the config with the following command: CROSS_COMPILE=riscv64-linux- make sipeed_maix_bitm_defconfig To edit the config use:...

February 1, 2022 路 1 min 路 Renzo Gort

MAIX (Canaan Kendryte k210) Embedded Linux - Introduction

This is my process of getting linux to work on the MAIX bit. The MAIX bit consits of an k210 SoC with 2 RISC-V 64 bit harts. The SoC has an total of 8MB RAM. The start is to do this without buildroot. Maybe later I will integrate all of this in an buildroot environment. Toolchain The toolchain is important in all steps. Because the target architecture is different than the architecture on the system that we compile the code on we need an cross-compiler....

February 1, 2022 路 1 min 路 Renzo Gort

MAIX M1 Handheld Console - Software: Screen

The screen is controlled by the ILI9341 controller. The goal is to have a framebuffer in memory which is pushed to the screen at a desent fps. The 8-bit interface is being used. This means we can write 1 pixel per message. The most code of the configuration and startup is based of the Adafruit TFTLCD-library. There are a few parts to realize the desired goal: Screen initialization Creating a framebuffer in the main loop for easy testing Make a routine for the second core to put a framebuffer to the screen....

September 27, 2021 路 3 min 路 Renzo Gort

MAIX M1 Handheld Console - Introduction

This is a process of building a handheld console. For this console I am going to be using a RISC-V microcontroller from Canaan, the Kendryte K210. This is a dual core 64-bit RISC-V microcontroller with floating point unit and 8 MB of RAM. I am not using the chip directly instead I will be using the Sipeed M1w stamp. For now I will not be using WiFi so it doesn鈥檛 matter if a M1 or M1w is used....

September 20, 2021 路 1 min 路 Renzo Gort