IAR for msp430 编译过程中出现Fatal Error[Pe1696]: cannot open source file "stdint.h"
[mw_shl_code=c,true]//-------------------------------------------------------------------------
/*FAT16.C - LINO TECH
Designed by Carter
2008-03-19
*/
#include <stdint.h>
#include "FAT16.h"
#include "sd.h"
//------------------------------------------------------------------------
#define SEC_Size 512
#define MBR_Sector 0 //绝对地址
#define FAT_Sector 0 //逻辑地址
//-------------------------------------------------------------------------
uint8_t BUFFER[SEC_Size];
uint8_t PB_RelativeSector;
uint16_t BPB_BytesPerSec;
uint8_t BPB_SecPerClus;
uint16_t BPB_RsvdSecCnt;
uint8_t BPB_NumFATs;
uint16_t BPB_RootEntCnt;
uint16_t BPB_TotSec16;
uint16_t BPB_FATSz16; //FAT占用的sectors
uint32_t BPB_HiddSec;
//------------------------------------------[/mw_shl_code]
|