1

ファット ドライバーを clk (hd2 のブートローダー) に追加しようとしていますが、コンパイル時にエラーが発生します。

aboot.o: In function `eval_sett_menu':
aboot.c:867: undefined reference to `fs_init'
aboot.c:870: undefined reference to `fs_load_file'
aboot.c:871: undefined reference to `fs_stop'
aboot.c:904: undefined reference to `fs_stop'

aboot.c のコード

    fs_init();
    printf( "\n   fs_init() done!" );
    void *buf = NULL;
    fs_load_file("/LEOCLK.img", buf);
    fs_stop();
    ...
    fs_stop();

fs.h 内のすべての fs_*

fs.h:

#ifndef FS_H_
#define FS_H_

void fs_init(void);
long fs_read(const char *filename, void *buffer, unsigned long maxsize);
int fs_write(const char *filename, void *buffer, unsigned long maxsize);

#endif

お願い助けて)

fs.h もちろん含まれています

私の悪い英語でごめんなさい

4

0 に答える 0