- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I need help with reading/writing files, from the NIOS II target with a PC file. My IDE is ECLIPSE, so: I don't have the project->properties->Associated system Library->System Library oroerties->Software Components->add this SW Component. So what's its equivalent. Thanks:confused: YossiLink Copied
4 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In other words, I can't get into the if:
int x; char list[30]= {"ABCOCJHAKLSDNJCDKLASNC"}; FILE *fd; if( (fd = fopen("a.txt", "w+t")) != NULL) { x = fwrite(list, sizeof(char), 12, fd); fclose(fd); } if( (fd = fopen("a.txt", "r+t")) != NULL) { x = fread(list, sizeof(char), 12, fd); fclose(fd); }- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, jberman!
To read your files from ext. Flash memory for NIOS II 9.1: BSP Editor -> Software packages -> activate altera_ro_zipfs. -ro_zipfs_base - base of your Flash memory. I haven't found how to create "zip file" with my original files to load it to Flash memory . Write this "zip file" to Flash using Flash Programmer. And use fp = fopen ("/mnt/rozipfs/file1.txt", "r"); and so on If you know how to create "zip file", to load it to Flash memory, share with me. Manual doesn't tell it clearly. altera.com/literature/hb/nios2/n2sw_nii52012.pdf- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi!
The answer: Michael72 altera_ro_zipfs niosii for eclipse .- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
--- Quote Start --- Hi, I need help with reading/writing files, from the NIOS II target with a PC file. My IDE is ECLIPSE, so: I don't have the project->properties->Associated system Library->System Library oroerties->Software Components->add this SW Component. So what's its equivalent. Thanks:confused: Yossi --- Quote End --- I meet the same difficult,have you solved you problem?

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page