Mountain Views in Zugspitz Area

Image

I have good friends in Texas which think that there are no mountains in the Alps: at the time when they visited Switzerland, there were no mountains visible because of low clouds :-(. So their believe is that all the mountains I show are created with Photoshop!  To prove that they are wrong (or that I indeed have good Photoshop skills), a collection of mountains from the Austrian mountain tours the past week:

Trail towards the Sonnenspitze

Trail towards the Sonnenspitze

Continue reading

Mountain Lake Views

Image

Lakes are the gems of the Alps. Most lakes have been carved out by glaciers during the last ice age, around 10’000 years ago. Their beauty depends on the view-point, angle and position of the sun during the day. So here is a view collection of wonderful lakes from this week:

Seebensee

Seebensee 1
Continue reading

Sunset Light on Zugspitze

Image

The weather cleared up, after some rain in the morning. Getting up early for hiking on beautiful trails, including climbing parts in the southern Zugspitz mountain area. My training level is very low as I had no practice this year yet due all the work load. With the result that at the end of the day, I’m very tired with my muscles burning. But I’m full of memories from this wonderful day in the mountains. And this got topped with a beautiful golden sunset. Instead sharing pictures from the tour, I share pictures from the end of the day…

Zugspitze Sunset

Zugspitze Sunset

Continue reading

GNU Libs with Debug Information: Rebuilding the GNU ARM Libraries

With my DIY tool chain (see “Constructing a Classroom IDE with Eclipse for ARM“) I get a complete tool chain. I do not need to build that tool chain from the sources for Windows, as all the binaries are nicely pre-compiled and made available. But there is one issue I face from time to time: as the libraries provided by ARM do not come with sources and debug information enabled, I end up with that “No source available for …” message in the debugger:

No Source Available

No Source Available

The solution is to grab the C/C++ library sources from the ARM launchpad site and get it built locally the way I need it.

Continue reading

XFormat, a Lightweight printf() and sprintf() Alternative

Frequent readers of this blog know that I do not like printf (see “Why I don’t like printf()“), because the standard printf() adds a lot of overhead and only causes troubles. But like small kids, engineers somehow get attracted by troubles ;-). Yes, printf() and especially sprintf() are handy for quick and dirty coding. The good news is that I have added a lightweight printf() and sprintf() implementation to my set of components: the XFormat component. And best of all: it supports floating point formatting :-).

XFormat Component

XFormat Component

Continue reading