Skip to content

Commit 28654b7

Browse files
committed
add write permission to rx_script
1 parent 30f4dc6 commit 28654b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/tools/TestApp/rx_app.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ int main(int argc, char* argv[]){
2525
mcm_init_client(&mcm, client_cfg);
2626
mcm_create_rx_connection(&mcm, conn_cfg);
2727
printf("waiting for frames... \n");
28-
FILE *frame = fopen(frame_file, "rb");
28+
FILE *frame = fopen(frame_file, "wb");
29+
int frame_num = 0;
2930
while(1){
3031
mcm_receive_video_frames(&mcm, frame);
3132
}

0 commit comments

Comments
 (0)