原子stm32f4 文件系统fatfs怎么写
答案:1 悬赏:30 手机版
解决时间 2021-11-26 12:28
- 提问者网友:書生途
- 2021-11-25 15:44
原子stm32f4 文件系统fatfs怎么写
最佳答案
- 五星知识达人网友:逐風
- 2021-11-25 16:10
原子stm32f4 文件系统fatfs怎么写
下面是一段测试代码。
test.c
#include < stdio.h >
#include < unistd.h >
static void PrintMessage(int i);
static void GoToSleep(void);
int main(void)
{
int i = 100000;
while ( 1 )
{
PrintMessage( i );
GoToSleep();
i -= 1;
}
return 0;
}
void PrintMessage(int i)
{
char buf[1024];
sprintf(buf,"%d bottles of beer on the wall.\n", i);
printf("%s",buf);
}
static void GoToSleep(void)
{
sleep(3);
}
下面是一段测试代码。
test.c
#include < stdio.h >
#include < unistd.h >
static void PrintMessage(int i);
static void GoToSleep(void);
int main(void)
{
int i = 100000;
while ( 1 )
{
PrintMessage( i );
GoToSleep();
i -= 1;
}
return 0;
}
void PrintMessage(int i)
{
char buf[1024];
sprintf(buf,"%d bottles of beer on the wall.\n", i);
printf("%s",buf);
}
static void GoToSleep(void)
{
sleep(3);
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯