Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > de.sci.electronics > #194340
| From | Reinhardt Behm <rbehm@hushmail.com> |
|---|---|
| Newsgroups | de.sci.electronics |
| Subject | Re: Grosse SD Card an 8-Bit Micro Controller? |
| Date | 2015-10-17 16:58 +0800 |
| Organization | A noiseless patient Spider |
| Message-ID | <mvt2fh$890$1@dont-email.me> (permalink) |
| References | <d8cg2hFl5s6U1@mid.individual.net> <mvrti8.3bk.1@stefan.msgid.phost.de> <d8dmfdF5i1U4@mid.individual.net> <mvsfd2$kpt$1@dont-email.me> <p529fc-4j3.ln1@criseis.ruhr.de> |
Olaf Kaluza wrote: > Reinhardt Behm <rbehm@hushmail.com> wrote: > > > >So könnt man beim späteren Lesen erkennen, wo die Daten zu Ende sind. > >Allerdings kannst Du die Karte so nicht einfach mit einem PC auslesen. > >Der findet da gar nichts, weil kein Filesystem da ist. Wenn Dein uC eine > >Schnittstelle (seriell o.ä.) könntest Du ihn zum Lesen benutzen. > > Man kann das ja dann programmieren. Aber dann braucht das Programm > auch entsprechende Zugriffsrechte. Das will man nicht wirklich. Welche Zugriffsrechte? Das läuft alles auf dem gleichen Controller, der auch schreibt. Die SD-Card ist von außen betrachtet wie interner Speicher des Controllers. Problem könnte allerdings die Datenmenge sein. Das Übertragen dauert bei einigen GB einige Zeit. > > Und sehr vorsichtig waere ich auch mit dem miesen Dreck den man heute > als Betriebsystem bezeichnet. Wenn du heute eine Karte irgendwo > reinsteckst fuehlt sich das so gut wie jedes System berufen irgendwo > mal etwas hinzuschreiben. Und wenn es kein Filessystem gibt geht > vermutlich ein Fenster auf: "Hallo unwissender Anwender, soll ich > nicht die Formatier-App starten?" > > >Wenn Du aber ein Filesystem (egal ob das übliche FAT oder was anderes) > >nimmst, reicht einfach sequentiell schreiben nicht. Du musst jedes mal > >auch die Meta-Daten updaten. Bei FAT bedeutet das mindestens im > >Directory-Eintrag die Länge ändern und in der FAT, je nach Clustersize > >auch noch den nächsten belegten Cluster eintragen. Das bedeutet > >mindestens zwei zusätzliche Lese- und Schreibzugriffe. > > Richtig. Es ist einiges an Verwaltungsarbeit zu machen. Ich habe mal > ein FAT System selber programmiert. Das war 1999/2000. Damals gab erst > nur MMC und es kurz darauf kam SD raus. Speicherkartengroesse war 8MB > (FAT12!) und 16MB. Ich habe die FAT komplett im Speicher meines > Controllers gehalten. Dann wurden die die Karten immer groesser und > ich habe diese kleine Fehlentscheidungen bereut. :-) > Aehnlich ist da auch bei heutigen Implementierungen. Wenn der > Programmierer bei der Entwicklung nur 4GB Karten hatte, es > mittlerweile aber auch problemlos 128GB gibt dann hat er > offensichtlich etwas nicht getestet und dann stoesst man ploetzlich > auf ueberraschende Probleme. > > > >Von der Beschreibung, dass es bei größerer Datei länger dauert lässt > >sich vermuten, dass Dein Programmierer eine fertig FAT-Filesystem > >Routine benutzt und bei jedem Schreiben ein Open, Seek-End, Write und > >Close macht. Das bedeutet, Directory lesen (Open), Kette der FAT-Cluster > >entlang laufen (Seek-End), Daten schreiben, evtl neuen FAT Cluster > >belegen und dabei FAT updaten (Write), Directory updaten (Close). > >Der Seek-End erfordert bei großen Files viele Lese-Zugriffe und kostet > >Zeit. > > Das denke ich auch. Man kann das natuerlich optimieren. Zum beispiel > indem man einen kleinen Cache fuer die letzten 5 Bloecke > einrichtet. Man muss nur den Speicher haben und sich des kleinen > Nachteils bewusst sein. (User zieht ploetzlich Karte raus oder Strom > faellt aus) Es geht ja bei Jörg's Problem nicht um Random Schreiben und Lesen. Da nur geschrieben werden soll, reicht es den zugehörigen Directory- und FAT-Sektor intern zu halten. Updaten und Flush. Nur beim Alloc eines neuen Clusters in der FAT muss man den neuen Sektor lesen. Da besteht dann auch nicht die Gefahr etwas zu verlieren, wenn der Strom ausfällt - außer vielleicht die gerade zu schreibenden Daten. Aber das Problem ist immer da. > Ich halte es fuer einen Designfehler wenn man heute noch ein Projekt > mit einem kleinen Microcontroller anfaengt wenn der SD-Karten > unterstuetzen soll. > > Olaf -- Reinhardt
Back to de.sci.electronics | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 07:31 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Matthias Weingart <mwnews@pentax.boerde.de> - 2015-10-16 15:00 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Matthias Weingart <mwnews@pentax.boerde.de> - 2015-10-16 15:10 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 09:35 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-17 07:27 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Matthias Weingart <mwnews@pentax.boerde.de> - 2015-10-19 07:04 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-19 07:32 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-19 13:00 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan Reuther <stefan.news@arcor.de> - 2015-10-19 18:42 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Dschen Reinecke <usenet@dschen.de> - 2015-10-19 13:48 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-19 16:08 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Dschen Reinecke <usenet@dschen.de> - 2015-10-20 09:33 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Frank Buss <fb@frank-buss.de> - 2015-10-20 10:26 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Matthias Weingart <mwnews@pentax.boerde.de> - 2015-10-20 08:48 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-20 16:17 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Dschen Reinecke <usenet@dschen.de> - 2015-10-21 14:14 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-19 07:37 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Johannes Bauer <dfnsonfsduifb@gmx.de> - 2015-10-16 17:08 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 09:41 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Thomas Langhammer <thomas.langhammer@gmx.net> - 2015-10-16 17:51 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 09:46 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Eric Brücklmeier <usenet@nerdcraft.de> - 2015-10-16 18:58 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 10:53 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-17 17:27 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Eric Brücklmeier <usenet@nerdcraft.de> - 2015-10-17 18:20 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Patrick Schaefer <pa.schaefer@web.de> - 2015-10-17 20:01 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Eric Brücklmeier <usenet@nerdcraft.de> - 2015-10-17 23:40 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 14:42 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 14:44 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan <df9bi@arcor.de> - 2015-10-17 21:40 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-16 22:03 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 18:21 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-17 07:00 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Frank Buss <fb@frank-buss.de> - 2015-10-17 08:38 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 07:16 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-17 16:57 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 14:48 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-18 07:55 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Dieter Wiedmann <dieter.wiedmann@t-online.de> - 2015-10-18 08:02 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-18 10:03 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Dieter Wiedmann <dieter.wiedmann@t-online.de> - 2015-10-18 11:04 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-10-18 08:27 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-18 07:17 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-19 13:04 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-19 07:58 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Matthias Weingart <mwnews@pentax.boerde.de> - 2015-10-20 07:11 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-20 11:08 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-20 09:29 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-20 10:16 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-20 10:50 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-20 12:27 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-20 13:18 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-20 14:54 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-10-20 14:59 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-20 15:24 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Rolf Bombach <rolfnospambombach@invalid.invalid> - 2015-10-22 21:27 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-10-22 21:39 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-23 07:54 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-23 16:02 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Axel_Berger@b.maus.de (Axel Berger) - 2015-10-17 21:43 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 15:20 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Rainer Knaepper <rainerk@smial.prima.de> - 2015-10-22 22:45 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-22 14:17 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-23 15:55 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Axel_Berger@b.maus.de (Axel Berger) - 2015-10-23 22:35 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Rainer Knaepper <rainerk@smial.prima.de> - 2015-10-26 11:56 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Rolf Bombach <rolfnospambombach@invalid.invalid> - 2015-11-11 21:24 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-12 07:20 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-17 17:08 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Klaus Butzmann <k.butzmann.usenet@online.de> - 2015-10-17 22:49 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 14:52 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Rainer Knaepper <rainerk@smial.prima.de> - 2015-10-22 22:47 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-22 14:23 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-23 07:56 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-23 09:34 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-23 11:25 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-23 11:41 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-23 13:12 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-23 13:40 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-23 13:27 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-23 14:28 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-23 07:59 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-26 08:57 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-26 07:53 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-27 09:53 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-27 07:10 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-27 18:54 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-27 11:49 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-28 08:02 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-28 07:41 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-28 17:56 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-28 18:27 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Arno Welzel <usenet@arnowelzel.de> - 2015-10-28 22:05 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-28 23:51 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-29 08:21 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Arno Welzel <usenet@arnowelzel.de> - 2015-11-03 07:29 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-03 08:05 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-11-03 09:45 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-03 10:12 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-11-03 10:44 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-03 11:05 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-03 13:59 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-03 10:03 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-28 22:56 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-29 00:02 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 10:02 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-29 10:37 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 12:08 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-29 13:12 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 14:08 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-29 15:06 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 15:34 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-29 15:46 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Arno Welzel <usenet@arnowelzel.de> - 2015-11-03 07:34 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-03 10:08 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-29 11:16 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 12:13 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-29 13:16 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-10-29 13:08 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 14:13 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-10-29 14:20 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 14:56 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Arno Welzel <usenet@arnowelzel.de> - 2015-11-03 07:42 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Arno Welzel <usenet@arnowelzel.de> - 2015-11-03 07:39 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-11-03 17:23 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-03 17:44 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-11-03 17:55 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-03 17:58 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-11-03 18:03 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-11-03 18:15 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-11-03 18:26 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-11-03 18:28 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-11-03 18:52 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-04 08:06 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-11-04 09:02 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-04 09:26 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-04 07:45 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-04 18:16 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Myn Seudop <seudop@freenet.de> - 2015-11-04 17:44 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-04 10:55 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-04 22:47 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Dieter Wiedmann <dieter.wiedmann@t-online.de> - 2015-11-04 22:56 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-05 00:43 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-11-05 09:33 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-11-05 10:36 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-05 10:46 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Eric Brücklmeier <usenet@nerdcraft.de> - 2015-11-05 11:42 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-11-05 14:21 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-05 10:36 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-05 11:07 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-11-05 11:10 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-11-05 12:11 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-11-05 11:55 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Marc Santhoff <m.santhoff@t-online.de> - 2015-11-05 13:25 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Pau Berger <3847106@owlpic.com> - 2015-11-05 15:28 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-11-05 16:12 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Myn Seudop <seudop@freenet.de> - 2015-11-05 18:39 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Wolfgang Kynast <wky@gmx.de> - 2015-11-05 19:51 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-11-05 20:16 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Wolfgang Kynast <wky@gmx.de> - 2015-11-06 01:23 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-11-06 13:19 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Guido Grohmann <guido.grohmann@gmx.de> - 2015-11-06 14:40 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Paul Berger <3847106@owlpic.com> - 2015-11-05 20:42 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Dieter Wiedmann <dieter.wiedmann@t-online.de> - 2015-11-05 21:15 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Reinhardt Behm <rbehm@hushmail.com> - 2015-11-06 13:19 +0800
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-11-05 19:51 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Thomas Prufer <prufer.public@mnet-online.de.invalid> - 2015-11-06 07:13 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-05 22:32 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Myn Seudop <seudop@freenet.de> - 2015-11-05 21:40 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Reinhardt Behm <rbehm@hushmail.com> - 2015-11-05 20:40 +0800
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-11-05 14:01 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Wolfgang Kynast <wky@gmx.de> - 2015-11-05 16:45 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-11-05 09:30 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Myn Seudop <seudop@freenet.de> - 2015-11-05 17:23 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-05 19:23 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Myn Seudop <seudop@freenet.de> - 2015-11-05 18:25 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-05 22:28 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Myn Seudop <seudop@freenet.de> - 2015-11-05 21:36 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Wolfgang Kynast <wky@gmx.de> - 2015-11-05 23:12 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Ignatios Souvatzis <u502sou@beverly.kleinbus.org> - 2015-11-11 16:08 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-06 00:51 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-03 19:52 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-11-03 20:24 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-11-03 23:52 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Marc Santhoff <m.santhoff@t-online.de> - 2015-11-03 18:46 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-28 11:18 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 10:03 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-28 22:49 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-27 15:36 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-27 18:55 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan Reuther <stefan.news@arcor.de> - 2015-10-23 19:31 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Guido Grohmann <guido.grohmann@gmx.de> - 2015-10-23 14:48 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-26 08:57 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Guido Grohmann <guido.grohmann@gmx.de> - 2015-10-26 17:57 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-23 11:38 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-23 11:55 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-23 12:04 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-23 13:06 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-23 14:47 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-23 15:31 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-23 13:14 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Guido Grohmann <guido.grohmann@gmx.de> - 2015-10-23 15:02 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-23 07:50 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-26 09:00 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-26 11:41 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-26 07:55 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-10-26 17:54 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-26 19:31 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-26 11:49 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Rupert Haselbeck <mein-rest-muell@gmx.de> - 2015-10-26 22:20 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-27 07:12 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-27 18:51 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-27 11:51 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-28 08:03 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-28 07:42 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-28 17:57 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-28 11:12 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "horst-d.winzler" <horst.d.winzler@web.de> - 2015-10-28 19:24 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-10-28 19:29 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-28 23:06 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-10-28 23:11 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-10-28 20:50 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-28 13:08 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-10-28 21:26 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-28 14:26 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-28 23:19 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-28 16:02 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2015-10-29 01:35 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 10:06 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-29 13:32 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-29 07:16 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 16:02 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-29 09:03 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-29 17:21 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-29 09:29 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Hanno Foest <hurga-news2@tigress.com> - 2015-10-29 17:55 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-30 11:51 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-30 07:52 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Marc Santhoff <m.santhoff@t-online.de> - 2015-10-29 17:14 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-29 09:21 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Marc Santhoff <m.santhoff@t-online.de> - 2015-10-29 17:33 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-29 09:59 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Marc Santhoff <m.santhoff@t-online.de> - 2015-10-29 18:05 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Eric Brücklmeier <usenet@nerdcraft.de> - 2015-10-29 18:08 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Dieter Wiedmann <dieter.wiedmann@t-online.de> - 2015-10-29 18:49 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-29 10:58 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Edzard Egberts <ed_09@tantec.de> - 2015-10-29 20:05 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-29 12:29 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Michael Reinck <mrreinck@googlemail.com> - 2015-11-01 16:03 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-01 07:13 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-11-01 16:26 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-01 07:37 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Michael Reinck <mrreinck@googlemail.com> - 2015-11-01 16:57 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-01 08:19 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Lutz Schulze <lschulze@netzwerkseite.de> - 2015-11-01 17:34 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Axel_Berger@b.maus.de (Axel Berger) - 2015-11-01 21:37 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Axel_Berger@b.maus.de (Axel Berger) - 2015-11-02 07:19 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Michael Reinck <mrreinck@googlemail.com> - 2015-11-01 17:49 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-11-01 17:52 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Michael Reinck <mrreinck@googlemail.com> - 2015-11-01 18:07 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-11-01 18:32 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-01 09:49 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-11-01 09:43 -0800
Re: Grosse SD Card an 8-Bit Micro Controller? Axel_Berger@b.maus.de (Axel Berger) - 2015-11-01 18:23 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-29 10:04 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan Engler <Lehrerfreund@web.de> - 2015-10-26 12:41 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-26 21:53 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-27 07:17 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-27 18:51 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-27 11:55 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan <df9bi@arcor.de> - 2015-10-28 08:13 +0100
Re: Grosse SD Card an 8-Bit Micro Controller? Axel_Berger@b.maus.de (Axel Berger) - 2015-10-28 07:53 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-23 16:19 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <bernd.laengerich@web.de> - 2015-10-23 19:14 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-24 12:51 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-19 11:24 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Thomas Prufer <prufer.public@mnet-online.de.invalid> - 2015-10-19 11:26 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? "Ralph A. Schmid, dk5ras" <ralph@schmid.xxx> - 2015-10-19 13:28 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-19 07:46 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Matthias Weingart <mwnews@pentax.boerde.de> - 2015-10-20 07:28 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-20 07:56 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-20 13:41 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan Engler <Lehrerfreund@web.de> - 2015-10-19 13:31 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-20 09:41 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Bernd Laengerich <Bernd.Laengerich@web.de> - 2015-10-19 11:33 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2015-10-20 13:33 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Marc Santhoff <m.santhoff@t-online.de> - 2015-10-17 14:57 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Frank Buss <fb@frank-buss.de> - 2015-10-16 18:38 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 09:56 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Andreas Fecht <forum@aftec.de> - 2015-10-16 21:17 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-10-16 21:23 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Andreas Fecht <forum@aftec.de> - 2015-10-16 21:38 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Gerrit Heitsch <gerrit@laosinh.s.bawue.de> - 2015-10-16 21:46 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Dieter Wiedmann <dieter.wiedmann@t-online.de> - 2015-10-16 21:52 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Michael Baeuerle <michael.baeuerle@gmx.net> - 2015-10-17 09:52 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 18:22 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-16 22:07 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 18:25 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Frank Buss <fb@frank-buss.de> - 2015-10-17 08:22 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Dieter Wiedmann <dieter.wiedmann@t-online.de> - 2015-10-17 13:42 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Marc Santhoff <m.santhoff@t-online.de> - 2015-10-17 14:54 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 07:20 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Frank Buss <fb@frank-buss.de> - 2015-10-17 17:17 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 15:01 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? all2001@spambog.com (Wolfgang Allinger) - 2015-10-17 20:01 -0300
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan Reuther <stefan.news@arcor.de> - 2015-10-16 22:26 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-16 18:27 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Reinhardt Behm <rbehm@hushmail.com> - 2015-10-17 11:33 +0800
Re: Grosse SD Card an 8-Bit Micro Controller? Reinhardt Behm <rbehm@hushmail.com> - 2015-10-17 11:32 +0800
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-17 07:16 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Reinhardt Behm <rbehm@hushmail.com> - 2015-10-17 16:58 +0800
Re: Grosse SD Card an 8-Bit Micro Controller? Olaf Kaluza <olaf@criseis.ruhr.de> - 2015-10-17 17:01 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Matthias Weingart <mwnews@pentax.boerde.de> - 2015-10-20 08:10 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan <df9bi@arcor.de> - 2015-10-20 10:35 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Andreas Fecht <forum@aftec.de> - 2015-10-20 11:16 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Michael Schwingen <news-1326478115@discworld.dascon.de> - 2015-11-01 22:09 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-20 09:02 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 07:24 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Michael S <michaely@bigfoot.de> - 2015-10-18 09:22 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Stefan Reuther <stefan.news@arcor.de> - 2015-10-17 11:46 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-17 07:29 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Gernot Fink <g.fink@gmx.net> - 2015-10-19 17:33 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-19 10:25 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Frank Buss <fb@frank-buss.de> - 2015-10-19 20:10 +0200
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-19 12:57 -0700
Re: Grosse SD Card an 8-Bit Micro Controller? Michael Baeuerle <michael.baeuerle@stz-e.de> - 2015-10-20 07:52 +0000
Re: Grosse SD Card an 8-Bit Micro Controller? Joerg <news@analogconsultants.com> - 2015-10-20 08:00 -0700
csiph-web