Fedetft

Dettagli sull'autore

Data di registrazione: 25/10/2010
URL: http://fedetft.wordpress.com

Ultimi post

  1. Better code completion for Miosix — 06/04/2012
  2. Miosix 1.60 is out — 12/02/2012
  3. Online il video della giornata di sperimentazione elettronica — 08/01/2012
  4. Using a DMA capable SPI as an LCD controller — 30/11/2011
  5. Mxgui — 22/09/2011

Lista post dell'Autore

ott 03

Miosix 1.54 released

After a lot of time spent coding, here’s the new release of Miosix, my OS kernel for microcontrollers. New features include: Porting for ST’s Cortex M3 microcontrollers Preliminary implementation of the POSIX thread API (pthreads) Improved statistics on memory usage and debugging messages Bug fixes and other enhancements If you’re interested, download the new release [...]

ott 02

Digital voltmeter for power supply

This summer I finally found some time to fix my power supply. It’s a rather old but relieable unit, and I have no intention of replacing it. Basically, it still works except for the voltage meter on the front panel. Over time, the pointer developed an offset of around 1V, which is visible in this [...]

giu 21

Back online

Because of an issue with the hosting service, my website (together with other websites on the same provider) has been unavailable for three days. Now the problem is fixed and I’m back online.

giu 05

Glue stick torch

Ever thought that you can make a torch using a glue stick?
Ever thought that you can hack an inductor into a transformer?
Here is the final result of a rather old project I’ve done in 2005, but never published until now.

Read the full article o…

apr 23

Qt and serial ports

Update Jun 22, 2011 : Fixed a bug for compiling under visual studio 2010. This is intended to be a small add-on to the article I’ve posted on my website which explains how to use boost’s asio library to interface with serial ports from C++ code. This blog post focuses on a topic not covered [...]

mar 07

CMake part 3: Finding libraries

Over time, I find myself more and more interested in CMake. That’s because I write many little programs, and those that use makefiles routinely break as I switch OS. The last one was a program that depended on libpng. When I tried to compile it on Mac OS X, it failed to find the library. [...]

feb 05

Fonera 2.0N inside

It took some time but finally someone put on the web images of what’s inside the Fonera 2.0N. Here are the links: Printed circuit top Printed circuit bottom Now some details: In the top picture you can clearly see the new Ralink chip and the FLASH memory, which has a parallel interface (the previous Foneras [...]

dic 23

STM32 GPIOs and Template Metaprogramming

I posted a new article on my website.
It talks about a performance optimized and high level way of handling STM32 GPIOs using Template Metaprogramming.

dic 21

CMake part 2: Compiler flags

It’s not the first time I talk about CMake in this blog, for the introduction read here. Now it’s time to explore the CMake syntax further. The first CMakeLists.txt looked like this: cmake_minimum_required(VERSION 2.6) project(HELLO) set(HELLO_SRCS main.cpp foo.cpp) add_executable(hello ${HELLO_SRCS}) As already explained, it successfully creates an executable called “hello” using the main.cpp and foo.cpp [...]

» Post successivi