使用STM32和fatfs在SD上记录int

时间:2016-05-30 11:21:08

标签: logging sd-card stm32

我想在SD卡上记录一些数据。我正在使用STM32f10x,我的代码适用于字符串。我在SD上写int是个问题。我正在使用此代码编写:

  

res = f_write(& fsrc,ramBufferWrite,filecounter,& bw);

另外,我尝试了sprintf但它没有用。如果你能帮助我,我将不胜感激。 感谢。

1 个答案:

答案 0 :(得分:0)

我用过" itoa"函数将int更改为string。另外,我使用" filecounter" for initialization file buffer write。