<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>hi, I am robin</title><link>https://robamu.github.io/</link><description>Recent content on hi, I am robin</description><generator>Hugo -- 0.145.0</generator><language>en-us</language><lastBuildDate>Wed, 26 Jun 2024 23:12:59 +0200</lastBuildDate><atom:link href="https://robamu.github.io/index.xml" rel="self" type="application/rss+xml"/><item><title>Implementing a TCP server for Space Applications in Rust using the Strategy Pattern</title><link>https://robamu.github.io/blog/rust-strategy-pattern/</link><pubDate>Fri, 29 Sep 2023 15:17:13 +0200</pubDate><guid>https://robamu.github.io/blog/rust-strategy-pattern/</guid><description>&lt;p>Even for space systems, TCP/IP is oftentimes an important component in some shape or form because
the majority of development might still occur on ground where an internet connection is still
available. The special thing about space is that instead of using newline and/or UTF-8 based
data, the data is generally in binary format and packet based. The most prevalent of the space
packet standards is probably the &lt;a href="https://public.ccsds.org/Pubs/133x0b2e1.pdf">CCSDS Space Packet Protocol&lt;/a>.&lt;/p></description></item><item><title>Packaging Python Projects in 2023</title><link>https://robamu.github.io/blog/packaging-python-in-2023/</link><pubDate>Mon, 04 Sep 2023 16:32:41 +0200</pubDate><guid>https://robamu.github.io/blog/packaging-python-in-2023/</guid><description>&lt;p>Learning clean package management with Pyhon is still a tricky subject even though there are a lot
of resources available online. A lot of the resources found online only cover partial topics while
others make recommendations which are becoming slowly obsolete, for example by still using
&lt;code>setup.py&lt;/code>. In this post, I will show how to set up a new package in Python from
scratch with all features I consider useful and important for a good Python package. I really like
the packaging blogpost &lt;a href="https://venthur.de/2022-12-18-python-packaging.html">Bastian Venthur&lt;/a> about
the current best practices of Python packaging, which is worth a read as well.&lt;/p></description></item><item><title>Cross-Compile and Debug Rust Applications for the Raspberry Pi</title><link>https://robamu.github.io/blog/cross-compile-rust-rpi/</link><pubDate>Mon, 27 Dec 2021 12:31:51 +0100</pubDate><guid>https://robamu.github.io/blog/cross-compile-rust-rpi/</guid><description>&lt;p>After exploring Rust for smaller bare-metal systems like Cortex-M based microcontrollers, I am
trying to learn using Rust when using a Linux runtime. The most common example for this is the
&lt;a href="https://www.raspberrypi.org/">Raspberry Pi&lt;/a>, but there are a lot of other boards out there
which support Embedded Linux, for example the &lt;a href="https://beagleboard.org/black">Beagle Bone Black&lt;/a> or
Xilinx hybrid CPU / FPGA solutions like the
&lt;a href="https://www.xilinx.com/products/silicon-devices/soc/zynq-7000.html">Zynq 7020&lt;/a>.&lt;/p>
&lt;center>
&lt;figure>
&lt;img loading="lazy" src="https://robamu.github.io/img/rpi-rs-crosscompile/RPI.jpg"
alt="Embedded Linux Boards: Raspberry Pi"/> &lt;figcaption>
&lt;p>Embedded Linux Boards: Raspberry Pi&lt;/p></description></item><item><title>Rust driver for the 10-bit MAX11619 ADCs</title><link>https://robamu.github.io/blog/max11619-driver-rust/</link><pubDate>Thu, 16 Dec 2021 22:51:15 +0100</pubDate><guid>https://robamu.github.io/blog/max11619-driver-rust/</guid><description>&lt;p>In my &lt;a href="https://robamu.github.io/post/rust-ecosystem/">last blog post&lt;/a>, I described how I set up a
small Rust ecosystem for the Vorago REB1 development board. This development board also
has a MAX11619 10-bit ADC device by Maxim devices. I thought this was a good opportunity
to develop my first device driver crate because there isn&amp;rsquo;t one for this device yet.&lt;/p>
&lt;p>The REB1 development board also has a 2K potentiometer connected directly to a channel of the ADC
which makes testing convenient.&lt;/p></description></item><item><title>Bringing Rust to Space - Setting up a Rust ecosystem for the VA108XX MCU family</title><link>https://robamu.github.io/blog/rust-ecosystem/</link><pubDate>Wed, 15 Dec 2021 23:31:00 +0100</pubDate><guid>https://robamu.github.io/blog/rust-ecosystem/</guid><description>&lt;h1 id="update-2024">UPDATE 2024&lt;/h1>
&lt;p>I have recently converted the VA108xx Rust support into monocrates which can now be found
&lt;a href="https://egit.irs.uni-stuttgart.de/rust/va108xx-rs">here&lt;/a>. I have also started working on the
support for the VA416XX family of devices which can be found &lt;a href="https://egit.irs.uni-stuttgart.de/rust/va416xx-rs">here&lt;/a>.
The new repositories also now use the &lt;code>embedded-hal&lt;/code> v1 release.&lt;/p>
&lt;h1 id="blogpost">Blogpost&lt;/h1>
&lt;p>The last few weeks I have been busy diving into the Rust ecosystem and learning the language
through practical projects. I finishing the excellent
&lt;a href="https://doc.rust-lang.org/book/">Rust book&lt;/a> and the &lt;a href="https://docs.rust-embedded.org/book/">Rust Embedded Book&lt;/a>
first and then tinkered with Rust on some STM32 MCUs. As a next step, I was looking for practical
projects to further learn the language. I&amp;rsquo;ve tried to combine this with the usual activities at
the research institute I work now as well.&lt;/p></description></item><item><title>Throwback - GSoC 2020 | Device handler development for the SOURCE project</title><link>https://robamu.github.io/blog/gsoc-post/</link><pubDate>Tue, 14 Dec 2021 19:29:58 +0100</pubDate><guid>https://robamu.github.io/blog/gsoc-post/</guid><description>&lt;p>This is an adapted version of a blog post initially posted
&lt;a href="https://aerospaceresearch.net/?p=1912">on Wordpress&lt;/a> as part of my GSoC project. It&amp;rsquo;s a perfect
way for me to set up my own first blog which is based on
&lt;a href="https://youngkin.github.io/post/createafreeblogsite/">this excellent guide&lt;/a>.&lt;/p>
&lt;p>At that point of time, I was an aerospace engineer doing my graduate studies at the University
of Stuttgart. I&amp;rsquo;m still active in the small satellite society &lt;a href="https://www.ksat-stuttgart.de/en/">KSat&lt;/a>
but I am doing more of a supporting role now that I started working the University as a PhD student.&lt;/p></description></item><item><title/><link>https://robamu.github.io/contact/</link><pubDate>Tue, 27 Apr 2021 21:53:29 +0500</pubDate><guid>https://robamu.github.io/contact/</guid><description>&lt;h1 id="get-in-touch">Get in touch&lt;/h1>
&lt;form id="contactform" method="post" action="https://formspree.io/f/mzbobjzr">
&lt;div class="form-group row">
&lt;label for="name" class="col-4 col-form-label">Name&lt;/label>
&lt;div class="col-8">
&lt;div class="input-group">
&lt;div class="input-group-addon">
&lt;i class="fa fa-user">&lt;/i>
&lt;/div>
&lt;input id="name" name="name" placeholder="Please enter your name" type="text" required="required" class="form-control">
&lt;/div>
&lt;/div>
&lt;/div>
&lt;div class="form-group row">
&lt;label for="email" class="col-4 col-form-label">E-mail address&lt;/label>
&lt;div class="col-8">
&lt;div class="input-group">
&lt;div class="input-group-addon">
&lt;i class="fa fa-envelope">&lt;/i>
&lt;/div>
&lt;input id="email" name="email" placeholder="Your e-mail address" type="text" required="required" class="form-control">
&lt;/div>
&lt;/div>
&lt;/div>
&lt;div class="form-group row">
&lt;label for="message" class="col-4 col-form-label">Message&lt;/label>
&lt;div class="col-8">
&lt;textarea id="message" name="message" cols="40" rows="10" required="required" class="form-control">&lt;/textarea>
&lt;/div>
&lt;/div>
&lt;div class="form-group row">
&lt;div class="offset-4 col-8">
&lt;button name="submit" type="submit" class="btn btn-primary">Send&lt;/button>
&lt;/div>
&lt;/div>
&lt;div class="text-center">
&lt;p>&lt;small>(Powered by &lt;a rel="nofollow" href="Un-static Forms">Un-static Forms&lt;/a>)&lt;/small>&lt;/p>
&lt;/div>
&lt;input type="hidden" name="_subject" value="Website contact" />
&lt;input type="hidden" name="_next" value="https://robamu.github.io/" />
&lt;input type="text" name="_gotcha" style="display:none" />
&lt;/form></description></item><item><title/><link>https://robamu.github.io/projects/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://robamu.github.io/projects/</guid><description>&lt;h2 id="sat-rs">sat-rs&lt;/h2>
&lt;p>I am currently working on the
&lt;a href="https://absatsw.irs.uni-stuttgart.de/projects/sat-rs">sat-rs library&lt;/a> as part of my PhD thesis.&lt;/p>
&lt;p>In large parts, this will be a Rust port of the &lt;a href="#flight-softwre-framework-fsfw-contributor">FSFW&lt;/a>, but the goal
will also be to leverage the incredible language features and the ecosystem of Rust to alleviate
the weak spots of the FSFW.&lt;/p>
&lt;h2 id="source-satellite-project">SOURCE satellite project&lt;/h2>
&lt;p>I worked on the &lt;a href="https://git.ksat-stuttgart.de/source/sourceobsw">on-board software&lt;/a> of the &lt;a href="https://www.ksat-stuttgart.de/en/our-projects/source/">SOURCE student satellite project&lt;/a>
for a few years and still regularly contribute to the
project.&lt;/p></description></item></channel></rss>