Skip to main content

Posts

Showing posts from 2013

Arduino without arduino IDE

It has been a long time since my last post about hardware or embedded software... This one is just about a link to: A Brief Tutorial on Programming the ATMega (Arduino) without Arduino Software http://brittonkerin.com/cduino/lessons.html The part which had call my attention most was the lesson 11, on persistent storage using the EEPROM. There are much more, it worth a careful the reading.

Adding multiple files to CVS

Since the beginning, this blog was meant more as short mental notes for future retrieval. So, here comes another one: I am a long term CVS users. I have lots of old projects which still being maintained with CVS for version control, backup and central repository. Most of these projects must be updated and/or must have new features added to them, some times I have to add lots of files to the repository, and doing this from the command line would be very painful if there were not powerful command line tools such as "find", "grep", "cut" and "xargs". First, I have to add everything which is not a CVS control folder to the repository: find . -not -name CVS -not -name Root -not -name Entries -not -name Repository -exec cvs add {} \; Second, the remaning files from the projects root folder must be added to. Issuing a "cvs update", the appear with a question mark (?), but cvs echos a lot more info to the stderr. We can cut that off, re