印出debug message 發佈日期: 2010 年 08 月 31 日2015 年 10 月 12 日 作者: 易春木 printf(xxx)可以直接印到封包裡 印到CONSOLE #define CONSOLE_PRINTF(args…) \ { \ int fd=open(‘/dev/console’, (1<<0));\ fprintf(fd, args); \ close(fd);\ } 使用指令導到 /dev/console echo ‘XXXX’ > ‘/dev/console’