/* * c't-Bot * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your * option) any later version. * This program is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * You should have received a copy of the GNU General Public * License along with this program; if not, write to the Free * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307, USA. * */ /*! * @file mmc-emu.h * @brief MMC / SD-Card Emulation fuer PC * @author Timo Sandmann (mail@timosandmann.de) * @date 10.12.2006 */ #ifndef MMC_EMU_H_ #define MMC_EMU_H_ #include "ct-Bot.h" #ifdef PC /*! * Checkt Initialisierung der emulierten Karte * @return 0, wenn initialisiert * @see mcu/mmc.c * @date 29.12.2006 */ inline uint8 mmc_emu_get_init_state(void); /*! * Initialisiere die emulierte SD/MMC-Karte * @return 0 wenn allles ok, sonst 1 * @see mcu/mmc.c * @date 29.12.2006 */ uint8 mmc_emu_init (void); /*! * Liest einen Block von der emulierten Karte * @param addr Nummer des 512-Byte Blocks * @param buffer Puffer von mindestens 512 Byte * @return 0 wenn alles ok ist * @see mcu/mmc.c * @date 10.12.2006 */ uint8 mmc_emu_read_sector(uint32 addr, uint8* buffer); /*! * Schreibt einen 512-Byte Sektor auf die emulierte Karte * @param addr Nummer des 512-Byte Blocks * @param buffer Zeiger auf den Puffer * @param async Wird bei der PC-Version nicht ausgewertet * @return 0 wenn alles ok ist * @date 10.12.2006 * @see mcu/mmc.c */ uint8 mmc_emu_write_sector(uint32 addr, uint8* buffer, uint8 async); /*! * Liefert die Groesse der emulierten Karte zurueck * @return Groesse der emulierten Karte in Byte. * @date 29.12.2006 */ uint32 mmc_emu_get_size(void); /*! * Testet VM und MMC / SD-Card Emulation am PC * @date 30.12.2006 */ uint8 mmc_emu_test(void); #endif // PC #endif /*MMC_H_*/