• 大小: 1.42MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-07
  • 语言: 其他
  • 标签: stm32  spi  

资源简介

一个基于STM32的SD/MicroSD卡读卡器,通过spi驱动,在不接USB的情况下,单片机可以通过FatFs访问SD卡,插入USB以后,立即转换成电脑上的海量存储设备,可当u盘使用

资源截图

代码片段和文件信息

/*
*******************************************************************************
* Copyright (c) 2008
* All rights reserved.

* File Name : APP.c
* Project   : 
* Author : 
* Version   : 1.0.0
* Date : 12/11/2008
* Description : 
*******************************************************************************
*/

/*
*************************************修改日志**********************************

*******************************************************************************
*/

#include “Includes.h“

/*
*******************************************************************************
* 常量定义
*******************************************************************************
*/

/*
*******************************************************************************
* 类型定义
*******************************************************************************
*/

/*
*******************************************************************************
* 变量定义
*******************************************************************************
*/

/*
*******************************************************************************
* 函数原型定义
*******************************************************************************
*/

void APP_SystemSleep(u8 cmd)
{
BSP_GpsOff();
//BSP_LcdBackLightOff();

    /* Request to enter STOP mode with regulator in low power mode*/
    PWR_EnterSTOPMode(PWR_Regulator_LowPower PWR_STOPEntry_WFI);
    BSP_SYSCLKConfig_STOP();

BSP_GpsOn();
    Trace(“Exit stop mode!\r\n“);
}

void APP_MsgExplain(u16 Msg)
{
s8 MsgBuf[100];

memset(MsgBuf 0 100);
switch (Msg)
{
//case MSG_LED_ON: strcpy(MsgBuf “LED Control!“);break;
//case MSG_FACTORY_RESET: strcpy(MsgBuf “Factory reset!“);break;
//case MSG_SYSTEM_RESET: strcpy(MsgBuf “System reset!“);break;
//case MSG_RTC_REPORT_TIME: strcpy(MsgBuf “Update time!“);break;
default: strcpy(MsgBuf “Unkonw message!“);break;
}

MyPrintf(“App get msg:%x(%s)\r\n“ Msg MsgBuf);
}

/*
 *******************************************************************************
 * 函数描述:APP消息处理机
 * 输入参数:无
 * 输出参数:无
 * 返回参数:无
 *******************************************************************************
 */
void APP_MsgHandle(void)
{
u16 Msg = 0;

if (GetMsg(MSG_TYPE_TO_APP &Msg) == -1)
{
return;
}

APP_MsgExplain(Msg);

switch (Msg)
{

default:    //do nothing
break;
}
}

/*
*******************************************************************************
 * 函数描述:APP任务(10ms执行周期)
 * 输入参数:无
 * 输出参数:无
 * 返回参数:无
 
*******************************************************************************
 */
void APP_Task(void)
{
static u16 timecnt = 0;

APP_MsgHandle();
timecnt++;
if (timecnt > 9)
{
timecnt = 0;
}
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2929  2012-03-16 22:25  USB读卡器\App\app.c

     文件       1380  2012-03-16 22:25  USB读卡器\App\app.h

     文件       4129  2012-03-16 22:25  USB读卡器\App\ConfigMng.c

     文件       1545  2012-03-16 22:25  USB读卡器\App\ConfigMng.h

     文件       5820  2012-03-16 22:25  USB读卡器\App\FileRec.c

     文件       1880  2012-03-16 22:25  USB读卡器\App\FileRec.h

     文件       5723  2012-03-16 22:25  USB读卡器\App\main.c

     文件      21890  2012-03-09 13:28  USB读卡器\App\MMC_SD.C

     文件       2570  2012-03-09 13:27  USB读卡器\App\MMC_SD.H

     文件       5404  2012-03-08 20:58  USB读卡器\App\spi.c

     文件        470  2010-11-15 22:40  USB读卡器\App\spi.h

     文件       3125  2009-10-16 17:05  USB读卡器\App\stm32f10x_conf.h

     文件      10012  2012-03-08 20:47  USB读卡器\App\stm32f10x_it.c

     文件       1976  2009-06-23 13:55  USB读卡器\App\stm32f10x_it.h

     文件       1179  2010-08-14 20:27  USB读卡器\App\USART.c

     文件        245  2009-10-16 15:50  USB读卡器\App\USART.h

     文件       1383  2012-01-12 17:42  USB读卡器\common\notifier_chain.c

     文件       1001  2012-01-12 17:42  USB读卡器\common\notifier_chain.h

     文件       2253  2012-02-28 09:25  USB读卡器\common\softirq.c

     文件        539  2012-01-12 17:42  USB读卡器\common\softirq.h

     文件        550  2012-03-08 21:12  USB读卡器\common\SysDelay.c

     文件        157  2012-03-08 21:08  USB读卡器\common\SysDelay.h

     文件      18018  2012-03-16 22:25  USB读卡器\common\tools.c

     文件       3675  2012-02-10 14:14  USB读卡器\common\Tools.h

     文件      27985  2012-03-16 22:25  USB读卡器\drv\bsp.c

     文件       2418  2012-03-16 22:25  USB读卡器\drv\bsp.h

     文件      22246  2012-03-08 14:48  USB读卡器\drv\spi_flash.c

     文件       3850  2012-03-08 14:47  USB读卡器\drv\spi_flash.h

     文件       1669  2012-03-08 10:44  USB读卡器\drv\Timer.c

     文件        386  2012-03-08 10:44  USB读卡器\drv\timer.h

............此处省略493个文件信息

评论

共有 条评论