Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > de.sci.electronics > #194308

Re: Grosse SD Card an 8-Bit Micro Controller?

From Reinhardt Behm <rbehm@hushmail.com>
Newsgroups de.sci.electronics
Subject Re: Grosse SD Card an 8-Bit Micro Controller?
Date 2015-10-17 11:32 +0800
Organization A noiseless patient Spider
Message-ID <mvsfd2$kpt$1@dont-email.me> (permalink)
References <d8cg2hFl5s6U1@mid.individual.net> <mvrti8.3bk.1@stefan.msgid.phost.de> <d8dmfdF5i1U4@mid.individual.net>

Show all headers | View raw


Joerg wrote:

> On 2015-10-16 1:26 PM, Stefan Reuther wrote:
>> Am 16.10.2015 um 16:31 schrieb Joerg:
>>> Fuer Longterm Data Logging, ein Jahr oder mehr, moechten wir eine 64GB
>>> SD Card bzw. Micro-SD benutzen. Soll mit 9600bd beschrieben werden. Der
>>> Digital-Ingenieur probierte das mit einem 8-bit uC (ATMega). Wenn es auf
>>> der Karte voller wurde, lief das nicht mehr. Bei 10 draufgeladenenen
>>> Files von je 1GByte konnte die Schreibgeschwindigkeit von 9600bd nicht
>>> mehr gehalten werden.
>>
>> Das klingt wie eine dämliche^Wsuboptimale Implementierung des
>> Dateisystems.
>>
>> Wenn man für jeden Block, den man an die Datei anhängen will, die FAT
>> von vorne nach hinten nach einem freien Platz durchsucht, wird das
>> Schreiben mit dem Füllstand der Karte natürlich immer langsamer.
>>
> 
> An sich sollte so eine Karte frisch formatiert in der Lage sein, ohne
> gross rumzusuchen einfach alles hintereinander zu klatschen. So wie man
> ja auch auf einer Faehre keinen Platz fuer das Auto sucht, sondern
> einfach alle neben- und hintereinander aufgereiht werden, so wie sie
> kommen.

Das wäre einfach möglich, wenn man die Karte ohne Filesystem betreibt. 
"Formatieren" wäre dann z.B. die ganze Karte mit null-Bytes zu beschreiben. 
Die Daten so schreiben, dass jeder Record mindestens ein von 0 verschiedenes 
Byte enthält.
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.

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.

So was sollte eigentlich mit brauchbarer Datenrate möglich sein. Aber dazu 
braucht man dafür optimierte FAT Routinen.

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.

-- 
Reinhardt

Back to de.sci.electronics | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


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