Changeset 480 for soft/giet_vm/applications/display
- Timestamp:
- Jan 1, 2015, 8:06:14 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/display/main.c
r444 r480 68 68 while ( image < NIMAGES ) 69 69 { 70 // load buf0 70 71 giet_fat_read( fd, buf0, NBLOCKS, image*NBLOCKS ); 71 72 … … 73 74 x, y, lpid, image, giet_proctime() ); 74 75 76 // display buf0 75 77 giet_fbf_cma_display( 0 ); 76 78 … … 80 82 image++; 81 83 84 // load buf1 82 85 giet_fat_read( fd, buf1, NBLOCKS, image*NBLOCKS ); 83 86 … … 85 88 x, y, lpid, image, giet_proctime() ); 86 89 90 // display buf1 87 91 giet_fbf_cma_display( 1 ); 88 92 89 93 giet_shr_printf("\n[DISPLAY] Proc[%d,%d,%d] display image %d from buf1 at cycle %d\n", 90 94 x, y, lpid, image, giet_proctime() ); 91 92 95 93 96 image++;
Note: See TracChangeset
for help on using the changeset viewer.