android中recovery模式下怎么将输出改为串口输出
不用下面的重定向输出到文件中
// If these fail, there's not really anywhere to complain...
freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL);
freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL);
我将上面的重定向屏蔽之后也没有串口信息。
我需要怎么更改程序? |