谦让冰淇淋

文章
4
资源
0
加入时间
2年10月17天

rk3288 android7 修改boot delay时间

em3288_mid_android-7.1\u-boot\include\configs\rk32plat.h/* mod it to enable console commands. */#define CONFIG_BOOTDELAY 0#define CONFIG_DIRECT_LOGO修改CONFIG_BOOTDELAY 后面的值

利用getc 和ungetc的实例

#include #include void main( void ){ int ch; int result = 0; printf( "Enter an integer: " ); /* Read in and convert number: */ while( ((ch = getchar()) != EOF) && isdigit( ch ) )